|
60752
|
1311
|
7
|
2026-04-21T06:16:42.597801+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776752202597_m2.jpg...
|
Firefox
|
JY-20698 handle failed field sync on playbook impo JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app — Work...
|
1
|
github.com/jiminny/app/pull/11988/changes
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🚀 Q2 Kick-Off - Local in 🇬🇧 & 🇧🇬 at our 🏢/🏡 - 🚀 Q2 Kick-Off - Local in 🇬🇧 & 🇧🇬 at our 🏢/🏡 - Apr 2 - [EMAIL] - Jiminny Mail
mail.google.com
Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
Close tab
Jiminny MCP Connector - Product - Confluence
Jiminny MCP Connector - Product - Confluence
[JY-20676] Notify the user if a Panorama prompts is deleted but is used in AJ Report - Jira
[JY-20676] Notify the user if a Panorama prompts is deleted but is used in AJ Report - Jira
🚀 Q2 Kick-Off - Local in 🇬🇧 & 🇧🇬 at our 🏢/🏡 - Apr 2 - [EMAIL] - Jiminny Mail
🚀 Q2 Kick-Off - Local in 🇬🇧 & 🇧🇬 at our 🏢/🏡 - Apr 2 - [EMAIL] - Jiminny Mail
Close tab
[JY-20500] Batch initial sync for Salesforce - Jira
[JY-20500] Batch initial sync for Salesforce - Jira
Feed — jiminny — Sentry
Feed — jiminny — Sentry
Jiminny
Jiminny
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
Skip to content
Skip to content
Open menu
Homepage (g then d)
jiminny
jiminny
app
app
Search or jump to…
Type
/
to search
Chat with Copilot
Open Copilot…
Create new...
Issues(g then i)
Pull requests
Repositories
You have unread notifications(g then n)
Open user navigation menu
Repository navigation
Repository navigation
Code
Code
Pull requests (31)
Pull requests
(
31
)
Agents
Agents
Actions
Actions
Wiki
Wiki
Security and quality (21)
Security and quality
(
21
)
Insights
Insights
Settings
Settings
Important update
Important update
On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.
Review this update
Review this update
and manage your preferences in your
GitHub account settings
GitHub account settings
.
Dismiss banner
JY-20698 handle failed field sync on playbook import activity types #11988 Edit title
JY-20698 handle failed field sync on playbook import activity types
#
11988
Edit title
Preview
Preview
Checks pending
Checks pending
Code
Code
Open
LakyLak
LakyLak
wants to merge 2 commits into
master
master
from
JY-20698-fix-SF-activity-types-on-new-playbook
JY-20698-fix-SF-activity-types-on-new-playbook
Copy head branch name to clipboard
Lines changed: 200 additions & 4 deletions
Conversation (1)
Conversation
(
1
)
Commits (2)
Commits
(
2
)
Checks (4)
Checks
(
4
)
Files changed (2)
Files changed
(
2
)
Pull Request Toolbar
Pull Request Toolbar
Collapse file tree
All commits
All commits
Refresh
Refresh
0
/
2
viewed
Submit review
Submit
review
Open diff view settings
Open overview panel
Open comments panel
(
0
)
Filter files…
Filter options
File tree
File tree
app/Listeners/Crm
ImportActivityTypes.php
ImportActivityTypes.php
tests/Unit/Listeners/Crm
ImportActivityTypesTest.php
ImportActivityTypesTest.php
Collapse file
app/Listeners/Crm/ImportActivityTypes.php
app/Listeners/Crm/ImportActivityTypes.php
app/Listeners/Crm/ImportActivityTypes.php
Copy file name to clipboard
Expand all lines: app/Listeners/Crm/ImportActivityTypes.php
Lines changed: 30 additions & 3 deletions
Not Viewed
Viewed
Comment on this file
More options
Original file line number
Original file line
Diff line number
Diff line change
@@ -11,8 +11,10 @@
11
use
Jiminny
\
Repositories
\
Crm
\
FieldRepository
;
11
use
Jiminny
\
Repositories
\
Crm
\
FieldRepository
;
12
use
Jiminny
\
Repositories
\
PlaybookCategoryRepository
;
12
use
Jiminny
\
Repositories
\
PlaybookCategoryRepository
;
13
use
Illuminate
\
Contracts
\
Queue
\
ShouldQueue
;
13
use
Illuminate
\
Contracts
\
Queue
\
ShouldQueue
;
14
+
use
Illuminate
\
Support
\
Facades
\
Log
;
14
use
Jiminny
\
Services
\
ResolveTeamCrmConnection
;
15
use
Jiminny
\
Services
\
ResolveTeamCrmConnection
;
15
use
stdClass
;
16
use
stdClass
;
17
+
use
Throwable
;
16
18
17
class
ImportActivityTypes
implements
ShouldQueue
19
class
ImportActivityTypes
implements
ShouldQueue
18
{
20
{
@@ -39,15 +41,31 @@ public function handle(PlaybookCreated $event): void
39
return
;
41
return
;
40
}
42
}
41
43
42
-
$
crmService
=
$
this
->
crmResolver
->
resolveForTeam
(
$
playbook
->
getTeam
());
44
+
$
values
= [];
43
-
$
crmService
->
syncField
(
$
playbook
->
getActivityField
());
44
45
45
-
$
values
=
$
crmService
->
importPicklistValues
(
$
playbook
->
getActivityField
());
46
+
try
{
47
+
$
crmService
=
$
this
->
crmResolver
->
resolveForTeam
(
$
playbook
->
getTeam
());
48
+
$
crmService
->
syncField
(
$
playbook
->
getActivityField
());
49
+
$
values
=
$
crmService
->
importPicklistValues
(
$
playbook
->
getActivityField
());
50
+
}
catch
(
Throwable
$
e
) {
51
+
Log::
warning
(
'
[ImportActivityTypes] CRM API failed, falling back to database values
'
, [
52
+
'
playbook_id
'
=>
$
playbook
->
getId
(),
53
+
'
team_id
'
=>
$
playbook
->
getTeamId
(),
54
+
'
error
'
=>
$
e
->
getMessage
(),
55
+
]);
56
+
}
46
57
47
if
(
empty
(
$
values
)) {
58
if
(
empty
(
$
values
)) {
48
$
values
=
$
this
->
fetchActivityFieldValues
(
$
playbook
->
getActivityField
());
59
$
values
=
$
this
->
fetchActivityFieldValues
(
$
playbook
->
getActivityField
());
60
+
61
+
Log::
info
(
'
[ImportActivityTypes] Using database fallback for categories
'
, [
62
+
'
playbook_id
'
=>
$
playbook
->
getId
(),
63
+
'
field_values_count
'
=>
$
values
->
count
(),
64
+
]);
49
}
65
}
50
66
67
+
$
createdCount
=
0
;
68
+
51
/** @var stdClass{label: string} $value */
69
/** @var stdClass{label: string} $value */
52
foreach
(
$
values
as
$
value
) {
70
foreach
(
$
values
as
$
value
) {
53
$
data
= [
71
$
data
= [
@@ -65,6 +83,15 @@ public function handle(PlaybookCreated $event): void
65
}
83...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"🚀 Q2 Kick-Off - Local in 🇬🇧 & 🇧🇬 at our 🏢/🏡 - Apr 2 - lukas.kovalik@jiminny.com - Jiminny Mail","depth":4,"bounds":{"left":0.08361037,"top":0.20031923,"width":0.08261303,"height":0.03312051},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"mail.google.com","depth":4,"bounds":{"left":0.08361037,"top":0.22266561,"width":0.028590426,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira","depth":4,"bounds":{"left":0.0018284575,"top":0.0518755,"width":0.07596409,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.09497207,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.10614525,"width":0.19963431,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.06732048,"top":0.10215483,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Jiminny MCP Connector - Product - Confluence","depth":4,"bounds":{"left":0.0,"top":0.12769353,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny MCP Connector - Product - Confluence","depth":5,"bounds":{"left":0.013297873,"top":0.13886672,"width":0.08294548,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20676] Notify the user if a Panorama prompts is deleted but is used in AJ Report - Jira","depth":4,"bounds":{"left":0.0,"top":0.16041501,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20676] Notify the user if a Panorama prompts is deleted but is used in AJ Report - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.17158818,"width":0.15791224,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"🚀 Q2 Kick-Off - Local in 🇬🇧 & 🇧🇬 at our 🏢/🏡 - Apr 2 - lukas.kovalik@jiminny.com - Jiminny Mail","depth":4,"bounds":{"left":0.0,"top":0.19313647,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"🚀 Q2 Kick-Off - Local in 🇬🇧 & 🇧🇬 at our 🏢/🏡 - Apr 2 - lukas.kovalik@jiminny.com - Jiminny Mail","depth":5,"bounds":{"left":0.013297873,"top":0.20430966,"width":0.16589096,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.06732048,"top":0.20031923,"width":0.007978723,"height":0.01915403},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"[JY-20500] Batch initial sync for Salesforce - Jira","depth":4,"bounds":{"left":0.0,"top":0.22585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20500] Batch initial sync for Salesforce - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.23703113,"width":0.08610372,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Feed — jiminny — Sentry","depth":4,"bounds":{"left":0.0,"top":0.2585794,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Feed — jiminny — Sentry","depth":5,"bounds":{"left":0.013297873,"top":0.2697526,"width":0.042719416,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.0,"top":0.29130086,"width":0.07962101,"height":0.032721467},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"bounds":{"left":0.013297873,"top":0.30247405,"width":0.013131649,"height":0.010774142},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.0028257978,"top":0.3256185,"width":0.07413564,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"bounds":{"left":0.0028257978,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open Google Gemini (⌃X)","depth":6,"bounds":{"left":0.013796543,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Tabs from other devices","depth":6,"bounds":{"left":0.024933511,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"bounds":{"left":0.036070477,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"bounds":{"left":0.04720745,"top":0.97007185,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Skip to content","depth":6,"bounds":{"left":0.07962101,"top":0.0518755,"width":0.0003324468,"height":0.0007980846},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to content","depth":7,"bounds":{"left":0.07962101,"top":0.05347167,"width":0.0029920214,"height":0.21468475},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Open menu","depth":10,"bounds":{"left":0.08494016,"top":0.06464485,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Homepage (g then d)","depth":9,"bounds":{"left":0.099567816,"top":0.06464485,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"jiminny","depth":12,"bounds":{"left":0.112865694,"top":0.06464485,"width":0.018949468,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"jiminny","depth":14,"bounds":{"left":0.11486037,"top":0.07063048,"width":0.014960106,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"app","depth":12,"bounds":{"left":0.13680187,"top":0.06464485,"width":0.017785905,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"app","depth":14,"bounds":{"left":0.13879654,"top":0.07063048,"width":0.008477394,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Search or jump to…","depth":9,"bounds":{"left":0.81698805,"top":0.06464485,"width":0.06565824,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Type","depth":12,"bounds":{"left":0.82928854,"top":0.07063048,"width":0.011801862,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":12,"bounds":{"left":0.8424202,"top":0.07222666,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"to search","depth":12,"bounds":{"left":0.84640956,"top":0.07063048,"width":0.021276595,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Chat with Copilot","depth":10,"bounds":{"left":0.88464093,"top":0.06464485,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"Open Copilot…","depth":9,"bounds":{"left":0.8949468,"top":0.06464485,"width":0.008643617,"height":0.025538707},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXMenuButton","text":"Create new...","depth":9,"bounds":{"left":0.9115692,"top":0.06464485,"width":0.01662234,"height":0.025538707},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Issues(g then i)","depth":9,"bounds":{"left":0.93085104,"top":0.06464485,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Pull requests","depth":9,"bounds":{"left":0.94414896,"top":0.06464485,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Repositories","depth":9,"bounds":{"left":0.9574468,"top":0.06464485,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"You have unread notifications(g then n)","depth":9,"bounds":{"left":0.97074467,"top":0.06464485,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Open user navigation menu","depth":9,"bounds":{"left":0.9840425,"top":0.06464485,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Repository navigation","depth":9,"bounds":{"left":0.079288565,"top":0.051077414,"width":0.0003324468,"height":0.0007980846},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Repository navigation","depth":10,"bounds":{"left":0.079288565,"top":0.05387071,"width":0.0787899,"height":0.023144454},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Code","depth":12,"bounds":{"left":0.08494016,"top":0.09936153,"width":0.025099734,"height":0.026336791},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Code","depth":14,"bounds":{"left":0.095744684,"top":0.10574621,"width":0.011469414,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Pull requests (31)","depth":12,"bounds":{"left":0.11269947,"top":0.09936153,"width":0.054521278,"height":0.026336791},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pull requests","depth":14,"bounds":{"left":0.12333777,"top":0.10574621,"width":0.02925532,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"bounds":{"left":0.15525267,"top":0.113727055,"width":0.0029920214,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"31","depth":14,"bounds":{"left":0.15824468,"top":0.113727055,"width":0.004986702,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":14,"bounds":{"left":0.16323139,"top":0.113727055,"width":0.0016622341,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Agents","depth":12,"bounds":{"left":0.16988032,"top":0.09936153,"width":0.029089095,"height":0.026336791},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Agents","depth":14,"bounds":{"left":0.18085106,"top":0.10574621,"width":0.014960106,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Actions","depth":12,"bounds":{"left":0.20162898,"top":0.09936153,"width":0.03025266,"height":0.026336791},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Actions","depth":14,"bounds":{"left":0.21276596,"top":0.10574621,"width":0.015957447,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Wiki","depth":12,"bounds":{"left":0.23454122,"top":0.09936153,"width":0.022938829,"height":0.026336791},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Wiki","depth":14,"bounds":{"left":0.24534574,"top":0.10574621,"width":0.009142287,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Security and quality (21)","depth":12,"bounds":{"left":0.2601396,"top":0.09936153,"width":0.069980055,"height":0.026336791},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Security and quality","depth":14,"bounds":{"left":0.27194148,"top":0.10574621,"width":0.04255319,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":14,"bounds":{"left":0.31831783,"top":0.113727055,"width":0.0029920214,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"21","depth":14,"bounds":{"left":0.32130983,"top":0.113727055,"width":0.0048204786,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":14,"bounds":{"left":0.32613033,"top":0.113727055,"width":0.0016622341,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Insights","depth":12,"bounds":{"left":0.33277926,"top":0.09936153,"width":0.03125,"height":0.026336791},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Insights","depth":14,"bounds":{"left":0.34391624,"top":0.10574621,"width":0.016788565,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Settings","depth":12,"bounds":{"left":0.36668882,"top":0.09936153,"width":0.032081116,"height":0.026336791},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Settings","depth":14,"bounds":{"left":0.3778258,"top":0.10574621,"width":0.01761968,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Important update","depth":10,"bounds":{"left":0.09325133,"top":0.14365523,"width":0.0003324468,"height":0.016759777},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Important update","depth":11,"bounds":{"left":0.09325133,"top":0.1452514,"width":0.039228722,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.","depth":10,"bounds":{"left":0.09325133,"top":0.1452514,"width":0.2159242,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Review this update","depth":10,"bounds":{"left":0.30917552,"top":0.1452514,"width":0.04055851,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Review this update","depth":11,"bounds":{"left":0.30917552,"top":0.1452514,"width":0.04055851,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"and manage your preferences in your","depth":10,"bounds":{"left":0.34973404,"top":0.1452514,"width":0.08261303,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"GitHub account settings","depth":10,"bounds":{"left":0.4323471,"top":0.1452514,"width":0.05219415,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"GitHub account settings","depth":11,"bounds":{"left":0.4323471,"top":0.1452514,"width":0.05219415,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":10,"bounds":{"left":0.48454124,"top":0.1452514,"width":0.0013297872,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Dismiss banner","depth":9,"bounds":{"left":0.98636967,"top":0.13886672,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"JY-20698 handle failed field sync on playbook import activity types #11988 Edit title","depth":13,"bounds":{"left":0.090259306,"top":0.19193934,"width":0.3565492,"height":0.031923383},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"JY-20698 handle failed field sync on playbook import activity types","depth":14,"bounds":{"left":0.090259306,"top":0.19273743,"width":0.30651596,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"#","depth":15,"bounds":{"left":0.39943483,"top":0.19273743,"width":0.0066489363,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11988","depth":15,"bounds":{"left":0.40608376,"top":0.19273743,"width":0.028756648,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Edit title","depth":14,"bounds":{"left":0.43617022,"top":0.19513169,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"Preview","depth":13,"bounds":{"left":0.95827794,"top":0.19992019,"width":0.031083776,"height":0.022346368},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Preview","depth":15,"bounds":{"left":0.96359706,"top":0.2047087,"width":0.01512633,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Checks pending","depth":13,"bounds":{"left":0.8728391,"top":0.19832402,"width":0.051861703,"height":0.025538707},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Checks pending","depth":15,"bounds":{"left":0.88513964,"top":0.20430966,"width":0.03523936,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Code","depth":13,"bounds":{"left":0.9260306,"top":0.19832402,"width":0.02825798,"height":0.025538707},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Code","depth":15,"bounds":{"left":0.9303524,"top":0.20430966,"width":0.011635638,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open","depth":13,"bounds":{"left":0.1008976,"top":0.23623304,"width":0.011968086,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"LakyLak","depth":15,"bounds":{"left":0.11951463,"top":0.2330407,"width":0.01861702,"height":0.016759777},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"LakyLak","depth":16,"bounds":{"left":0.11951463,"top":0.23463687,"width":0.01861702,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"wants to merge 2 commits into","depth":15,"bounds":{"left":0.13946144,"top":0.23463687,"width":0.06632314,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"master","depth":15,"bounds":{"left":0.20711437,"top":0.23264167,"width":0.018450798,"height":0.017557861},"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"master","depth":16,"bounds":{"left":0.20910904,"top":0.235834,"width":0.014461436,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"from","depth":16,"bounds":{"left":0.22689494,"top":0.23463687,"width":0.009973404,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JY-20698-fix-SF-activity-types-on-new-playbook","depth":16,"bounds":{"left":0.23819813,"top":0.23264167,"width":0.1143617,"height":0.017557861},"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20698-fix-SF-activity-types-on-new-playbook","depth":17,"bounds":{"left":0.24019282,"top":0.235834,"width":0.11037234,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy head branch name to clipboard","depth":16,"bounds":{"left":0.3538896,"top":0.23024741,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Lines changed: 200 additions & 4 deletions","depth":14,"bounds":{"left":0.9566157,"top":0.28651237,"width":0.019946808,"height":0.11412609},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Conversation (1)","depth":16,"bounds":{"left":0.090259306,"top":0.26855546,"width":0.056848403,"height":0.031923383},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Conversation","depth":17,"bounds":{"left":0.10388963,"top":0.27813247,"width":0.02825798,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.14145611,"top":0.27813247,"width":0.0029920214,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"1","depth":18,"bounds":{"left":0.14444813,"top":0.27813247,"width":0.0019946808,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"bounds":{"left":0.14644282,"top":0.27813247,"width":0.0018284575,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Commits (2)","depth":16,"bounds":{"left":0.1471077,"top":0.26855546,"width":0.048204787,"height":0.031923383},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Commits","depth":17,"bounds":{"left":0.16073804,"top":0.27813247,"width":0.018949468,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.1896609,"top":0.27813247,"width":0.0029920214,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":18,"bounds":{"left":0.19265293,"top":0.27813247,"width":0.0026595744,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"bounds":{"left":0.1953125,"top":0.27813247,"width":0.0018284575,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Checks (4)","depth":16,"bounds":{"left":0.1953125,"top":0.26855546,"width":0.04504654,"height":0.031923383},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Checks","depth":17,"bounds":{"left":0.20894282,"top":0.27813247,"width":0.015791224,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.23470744,"top":0.27813247,"width":0.0029920214,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"4","depth":18,"bounds":{"left":0.23769946,"top":0.27813247,"width":0.0029920214,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"bounds":{"left":0.24069148,"top":0.27813247,"width":0.0018284575,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Files changed (2)","depth":16,"bounds":{"left":0.24035904,"top":0.26855546,"width":0.05900931,"height":0.031923383},"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Files changed","depth":17,"bounds":{"left":0.25398937,"top":0.27813247,"width":0.029920213,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.29371676,"top":0.27813247,"width":0.0029920214,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":18,"bounds":{"left":0.29670876,"top":0.27813247,"width":0.0026595744,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":18,"bounds":{"left":0.29936835,"top":0.27813247,"width":0.0018284575,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Pull Request Toolbar","depth":14,"bounds":{"left":0.090259306,"top":0.32402235,"width":0.0003324468,"height":0.0007980846},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Pull Request Toolbar","depth":15,"bounds":{"left":0.090259306,"top":0.32681563,"width":0.030086435,"height":0.08060654},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse file tree","depth":14,"bounds":{"left":0.090259306,"top":0.31324822,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXButton","text":"All commits","depth":14,"bounds":{"left":0.1022274,"top":0.31324822,"width":0.040392287,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"All commits","depth":16,"bounds":{"left":0.11186835,"top":0.31843576,"width":0.02244016,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Refresh","depth":15,"bounds":{"left":0.8344415,"top":0.31324822,"width":0.027759308,"height":0.022346368},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Refresh","depth":17,"bounds":{"left":0.8440825,"top":0.31843576,"width":0.01512633,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":15,"bounds":{"left":0.8715093,"top":0.31843576,"width":0.0026595744,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":15,"bounds":{"left":0.8741689,"top":0.31843576,"width":0.0023271276,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2","depth":15,"bounds":{"left":0.8774933,"top":0.31843576,"width":0.002493351,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"viewed","depth":15,"bounds":{"left":0.88115025,"top":0.31843576,"width":0.013131649,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Submit review","depth":14,"bounds":{"left":0.9025931,"top":0.31324822,"width":0.03856383,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Submit","depth":16,"bounds":{"left":0.9055851,"top":0.31843576,"width":0.014793883,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"review","depth":16,"bounds":{"left":0.920379,"top":0.31843576,"width":0.012466756,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"Open diff view settings","depth":14,"bounds":{"left":0.9438165,"top":0.31324822,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open overview panel","depth":14,"bounds":{"left":0.96143615,"top":0.31324822,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open comments panel","depth":14,"bounds":{"left":0.97207445,"top":0.31324822,"width":0.017287234,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"(","depth":16,"bounds":{"left":0.98038566,"top":0.31843576,"width":0.0026595744,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":16,"bounds":{"left":0.9830452,"top":0.31843576,"width":0.0026595744,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":16,"bounds":{"left":0.9857048,"top":0.31843576,"width":0.0014960107,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXTextField","text":"Filter files…","depth":16,"bounds":{"left":0.1015625,"top":0.36272946,"width":0.06815159,"height":0.023942538},"help_text":"","role_description":"text field","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXMenuButton","text":"Filter options","depth":16,"bounds":{"left":0.17270611,"top":0.36193135,"width":0.010638298,"height":0.025538707},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"File tree","depth":15,"bounds":{"left":0.09059176,"top":0.40023944,"width":0.0003324468,"height":0.0007980846},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"File tree","depth":16,"bounds":{"left":0.09059176,"top":0.40303272,"width":0.014295213,"height":0.0518755},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"app/Listeners/Crm","depth":19,"bounds":{"left":0.1065492,"top":0.40622506,"width":0.03956117,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"ImportActivityTypes.php","depth":21,"bounds":{"left":0.10920878,"top":0.43216282,"width":0.05219415,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ImportActivityTypes.php","depth":22,"bounds":{"left":0.10920878,"top":0.43216282,"width":0.05219415,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"tests/Unit/Listeners/Crm","depth":19,"bounds":{"left":0.1065492,"top":0.4577015,"width":0.05219415,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"ImportActivityTypesTest.php","depth":21,"bounds":{"left":0.10920878,"top":0.48324022,"width":0.06100399,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"ImportActivityTypesTest.php","depth":22,"bounds":{"left":0.10920878,"top":0.48324022,"width":0.06100399,"height":0.013567438},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Collapse file","depth":14,"bounds":{"left":0.19730718,"top":0.36751795,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"app/Listeners/Crm/ImportActivityTypes.php","depth":15,"bounds":{"left":0.20794548,"top":0.37031126,"width":0.09840426,"height":0.016759777},"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXLink","text":"app/Listeners/Crm/ImportActivityTypes.php","depth":16,"bounds":{"left":0.20794548,"top":0.3719074,"width":0.09840426,"height":0.013567438},"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"app/Listeners/Crm/ImportActivityTypes.php","depth":18,"bounds":{"left":0.20794548,"top":0.37390262,"width":0.09840426,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy file name to clipboard","depth":15,"bounds":{"left":0.3090093,"top":0.36751795,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Expand all lines: app/Listeners/Crm/ImportActivityTypes.php","depth":15,"bounds":{"left":0.31831783,"top":0.36751795,"width":0.00930851,"height":0.022346368},"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Lines changed: 30 additions & 3 deletions","depth":15,"bounds":{"left":0.9030917,"top":0.37988827,"width":0.019946808,"height":0.11412609},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Not Viewed","depth":14,"bounds":{"left":0.93583775,"top":0.36751795,"width":0.026595745,"height":0.022346368},"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Viewed","depth":16,"bounds":{"left":0.94547874,"top":0.37270552,"width":0.013962766,"height":0.011971269},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Comment on this file","depth":14,"bounds":{"left":0.9650931,"top":0.36751795,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXMenuButton","text":"More options","depth":14,"bounds":{"left":0.97706115,"top":0.36751795,"width":0.00930851,"height":0.022346368},"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Original file line number","depth":17,"bounds":{"left":0.19464761,"top":0.39704707,"width":0.017952127,"height":0.04708699},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Original file line","depth":17,"bounds":{"left":0.21259974,"top":0.40542698,"width":0.018118352,"height":0.030327214},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Diff line number","depth":17,"bounds":{"left":0.23071809,"top":0.39704707,"width":0.01761968,"height":0.04708699},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Diff line change","depth":17,"bounds":{"left":0.24833776,"top":0.39704707,"width":0.016954787,"height":0.04708699},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"@@ -11,8 +11,10 @@","depth":18,"bounds":{"left":0.2159242,"top":0.3990423,"width":0.043218084,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11","depth":16,"bounds":{"left":0.19896941,"top":0.41819632,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"use","depth":18,"bounds":{"left":0.2159242,"top":0.41819632,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jiminny","depth":18,"bounds":{"left":0.22556517,"top":0.41819632,"width":0.016788565,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.24235372,"top":0.41819632,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Repositories","depth":18,"bounds":{"left":0.24468085,"top":0.41819632,"width":0.028756648,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.2734375,"top":0.41819632,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Crm","depth":18,"bounds":{"left":0.27593085,"top":0.41819632,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.28307846,"top":0.41819632,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FieldRepository","depth":18,"bounds":{"left":0.2855718,"top":0.41819632,"width":0.035904255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";","depth":18,"bounds":{"left":0.32147607,"top":0.41819632,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"11","depth":16,"bounds":{"left":0.59607714,"top":0.41819632,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"use","depth":18,"bounds":{"left":0.61319816,"top":0.41819632,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jiminny","depth":18,"bounds":{"left":0.62267286,"top":0.41819632,"width":0.016788565,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.63946146,"top":0.41819632,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Repositories","depth":18,"bounds":{"left":0.6419548,"top":0.41819632,"width":0.028756648,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.67071146,"top":0.41819632,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Crm","depth":18,"bounds":{"left":0.67303854,"top":0.41819632,"width":0.00731383,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.6803524,"top":0.41819632,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"FieldRepository","depth":18,"bounds":{"left":0.68267953,"top":0.41819632,"width":0.036070477,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";","depth":18,"bounds":{"left":0.71875,"top":0.41819632,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":16,"bounds":{"left":0.19896941,"top":0.43735036,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"use","depth":18,"bounds":{"left":0.2159242,"top":0.43735036,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jiminny","depth":18,"bounds":{"left":0.22556517,"top":0.43735036,"width":0.016788565,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.24235372,"top":0.43735036,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Repositories","depth":18,"bounds":{"left":0.24468085,"top":0.43735036,"width":0.028756648,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.2734375,"top":0.43735036,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"PlaybookCategoryRepository","depth":18,"bounds":{"left":0.27593085,"top":0.43735036,"width":0.062333778,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";","depth":18,"bounds":{"left":0.3382646,"top":0.43735036,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"12","depth":16,"bounds":{"left":0.59607714,"top":0.43735036,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"use","depth":18,"bounds":{"left":0.61319816,"top":0.43735036,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jiminny","depth":18,"bounds":{"left":0.62267286,"top":0.43735036,"width":0.016788565,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.63946146,"top":0.43735036,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Repositories","depth":18,"bounds":{"left":0.6419548,"top":0.43735036,"width":0.028756648,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.67071146,"top":0.43735036,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"PlaybookCategoryRepository","depth":18,"bounds":{"left":0.67303854,"top":0.43735036,"width":0.0625,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";","depth":18,"bounds":{"left":0.73553854,"top":0.43735036,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13","depth":16,"bounds":{"left":0.19896941,"top":0.45650437,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"use","depth":18,"bounds":{"left":0.2159242,"top":0.45650437,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Illuminate","depth":18,"bounds":{"left":0.22556517,"top":0.45650437,"width":0.023936171,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.24950133,"top":0.45650437,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Contracts","depth":18,"bounds":{"left":0.25199467,"top":0.45650437,"width":0.02144282,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.2734375,"top":0.45650437,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Queue","depth":18,"bounds":{"left":0.27593085,"top":0.45650437,"width":0.011968086,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.28789893,"top":0.45650437,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ShouldQueue","depth":18,"bounds":{"left":0.29022607,"top":0.45650437,"width":0.02642952,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";","depth":18,"bounds":{"left":0.31665558,"top":0.45650437,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"13","depth":16,"bounds":{"left":0.59607714,"top":0.45650437,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"use","depth":18,"bounds":{"left":0.61319816,"top":0.45650437,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Illuminate","depth":18,"bounds":{"left":0.62267286,"top":0.45650437,"width":0.024102394,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.64677525,"top":0.45650437,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Contracts","depth":18,"bounds":{"left":0.6491024,"top":0.45650437,"width":0.021609042,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.67071146,"top":0.45650437,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Queue","depth":18,"bounds":{"left":0.67303854,"top":0.45650437,"width":0.012134309,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.68517286,"top":0.45650437,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ShouldQueue","depth":18,"bounds":{"left":0.6875,"top":0.45650437,"width":0.02642952,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";","depth":18,"bounds":{"left":0.71392953,"top":0.45650437,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"14","depth":16,"bounds":{"left":0.59607714,"top":0.47565842,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":0.47565842,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"use","depth":18,"bounds":{"left":0.61319816,"top":0.47565842,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Illuminate","depth":18,"bounds":{"left":0.62267286,"top":0.47565842,"width":0.024102394,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.64677525,"top":0.47565842,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Support","depth":18,"bounds":{"left":0.6491024,"top":0.47565842,"width":0.016788565,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.66589093,"top":0.47565842,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Facades","depth":18,"bounds":{"left":0.6682181,"top":0.47565842,"width":0.016954787,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.68517286,"top":0.47565842,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Log","depth":18,"bounds":{"left":0.6875,"top":0.47565842,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";","depth":18,"bounds":{"left":0.6946476,"top":0.47565842,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"14","depth":16,"bounds":{"left":0.19896941,"top":0.49481246,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"use","depth":18,"bounds":{"left":0.2159242,"top":0.49481246,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jiminny","depth":18,"bounds":{"left":0.22556517,"top":0.49481246,"width":0.016788565,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.24235372,"top":0.49481246,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Services","depth":18,"bounds":{"left":0.24468085,"top":0.49481246,"width":0.019281914,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.26396278,"top":0.49481246,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ResolveTeamCrmConnection","depth":18,"bounds":{"left":0.2662899,"top":0.49481246,"width":0.057679523,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";","depth":18,"bounds":{"left":0.32396942,"top":0.49481246,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15","depth":16,"bounds":{"left":0.59607714,"top":0.49481246,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"use","depth":18,"bounds":{"left":0.61319816,"top":0.49481246,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Jiminny","depth":18,"bounds":{"left":0.62267286,"top":0.49481246,"width":0.016788565,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.63946146,"top":0.49481246,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Services","depth":18,"bounds":{"left":0.6419548,"top":0.49481246,"width":0.019115692,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"\\","depth":18,"bounds":{"left":0.66107047,"top":0.49481246,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ResolveTeamCrmConnection","depth":18,"bounds":{"left":0.66356385,"top":0.49481246,"width":0.057513297,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";","depth":18,"bounds":{"left":0.72107714,"top":0.49481246,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"15","depth":16,"bounds":{"left":0.19896941,"top":0.5139665,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"use","depth":18,"bounds":{"left":0.2159242,"top":0.5139665,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"stdClass","depth":18,"bounds":{"left":0.22556517,"top":0.5139665,"width":0.019115692,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";","depth":18,"bounds":{"left":0.24468085,"top":0.5139665,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"16","depth":16,"bounds":{"left":0.59607714,"top":0.5139665,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"use","depth":18,"bounds":{"left":0.61319816,"top":0.5139665,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"stdClass","depth":18,"bounds":{"left":0.62267286,"top":0.5139665,"width":0.019281914,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";","depth":18,"bounds":{"left":0.6419548,"top":0.5139665,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"17","depth":16,"bounds":{"left":0.59607714,"top":0.5331205,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":0.5331205,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"use","depth":18,"bounds":{"left":0.61319816,"top":0.5331205,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Throwable","depth":18,"bounds":{"left":0.62267286,"top":0.5331205,"width":0.021609042,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";","depth":18,"bounds":{"left":0.6442819,"top":0.5331205,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"16","depth":16,"bounds":{"left":0.19896941,"top":0.5522745,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18","depth":16,"bounds":{"left":0.59607714,"top":0.5522745,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"17","depth":16,"bounds":{"left":0.19896941,"top":0.5714286,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"class","depth":18,"bounds":{"left":0.2159242,"top":0.5714286,"width":0.011968086,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ImportActivityTypes","depth":18,"bounds":{"left":0.2278923,"top":0.5714286,"width":0.05036569,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"implements","depth":18,"bounds":{"left":0.27825797,"top":0.5714286,"width":0.024102394,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ShouldQueue","depth":18,"bounds":{"left":0.3023604,"top":0.5714286,"width":0.028756648,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"19","depth":16,"bounds":{"left":0.59607714,"top":0.5714286,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"class","depth":18,"bounds":{"left":0.61319816,"top":0.5714286,"width":0.011968086,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ImportActivityTypes","depth":18,"bounds":{"left":0.62516624,"top":0.5714286,"width":0.05036569,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"implements","depth":18,"bounds":{"left":0.6755319,"top":0.5714286,"width":0.023936171,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ShouldQueue","depth":18,"bounds":{"left":0.6994681,"top":0.5714286,"width":0.028756648,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"18","depth":16,"bounds":{"left":0.19896941,"top":0.5905826,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"{","depth":18,"bounds":{"left":0.2159242,"top":0.5905826,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"20","depth":16,"bounds":{"left":0.59607714,"top":0.5905826,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"{","depth":18,"bounds":{"left":0.61319816,"top":0.5905826,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"@@ -39,15 +41,31 @@ public function handle(PlaybookCreated $event): void","depth":18,"bounds":{"left":0.2159242,"top":0.6097366,"width":0.17270611,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"39","depth":16,"bounds":{"left":0.19896941,"top":0.62889063,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"return","depth":18,"bounds":{"left":0.24468085,"top":0.62889063,"width":0.014461436,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";","depth":18,"bounds":{"left":0.25914228,"top":0.62889063,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"41","depth":16,"bounds":{"left":0.59607714,"top":0.62889063,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"return","depth":18,"bounds":{"left":0.6419548,"top":0.62889063,"width":0.014295213,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";","depth":18,"bounds":{"left":0.65625,"top":0.62889063,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"40","depth":16,"bounds":{"left":0.19896941,"top":0.6480447,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"}","depth":18,"bounds":{"left":0.2159242,"top":0.6480447,"width":0.021609042,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"42","depth":16,"bounds":{"left":0.59607714,"top":0.6480447,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"}","depth":18,"bounds":{"left":0.61319816,"top":0.6480447,"width":0.02144282,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"41","depth":16,"bounds":{"left":0.19896941,"top":0.6671987,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"43","depth":16,"bounds":{"left":0.59607714,"top":0.6671987,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"42","depth":16,"bounds":{"left":0.19896941,"top":0.6863527,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"-","depth":18,"bounds":{"left":0.21060506,"top":0.6863527,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.23503989,"top":0.6863527,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"crmService","depth":18,"bounds":{"left":0.23753324,"top":0.6863527,"width":0.023936171,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=","depth":18,"bounds":{"left":0.26146942,"top":0.6863527,"width":0.00731383,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.26878324,"top":0.6863527,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"this","depth":18,"bounds":{"left":0.2711104,"top":0.6863527,"width":0.009640957,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.28075132,"top":0.6863527,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"crmResolver","depth":18,"bounds":{"left":0.2855718,"top":0.6863527,"width":0.026263298,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.3118351,"top":0.6863527,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"resolveForTeam","depth":18,"bounds":{"left":0.31665558,"top":0.6863527,"width":0.03357713,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.35023272,"top":0.6863527,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.35272607,"top":0.6863527,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"playbook","depth":18,"bounds":{"left":0.3550532,"top":0.6863527,"width":0.019281914,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.3743351,"top":0.6863527,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"getTeam","depth":18,"bounds":{"left":0.37898937,"top":0.6863527,"width":0.016954787,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"());","depth":18,"bounds":{"left":0.39594415,"top":0.6863527,"width":0.009474734,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"44","depth":16,"bounds":{"left":0.59607714,"top":0.6863527,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":0.6863527,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.63231385,"top":0.6863527,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"values","depth":18,"bounds":{"left":0.63464093,"top":0.6863527,"width":0.014461436,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"= [];","depth":18,"bounds":{"left":0.6491024,"top":0.6863527,"width":0.014461436,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"43","depth":16,"bounds":{"left":0.19896941,"top":0.7055068,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"-","depth":18,"bounds":{"left":0.21060506,"top":0.7055068,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.23503989,"top":0.7055068,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"crmService","depth":18,"bounds":{"left":0.23753324,"top":0.7055068,"width":0.023936171,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.26146942,"top":0.7055068,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"syncField","depth":18,"bounds":{"left":0.2662899,"top":0.7055068,"width":0.021609042,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.28789893,"top":0.7055068,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.29022607,"top":0.7055068,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"playbook","depth":18,"bounds":{"left":0.29271942,"top":0.7055068,"width":0.019115692,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.3118351,"top":0.7055068,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"getActivityField","depth":18,"bounds":{"left":0.31665558,"top":0.7055068,"width":0.038397606,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"());","depth":18,"bounds":{"left":0.3550532,"top":0.7055068,"width":0.009640957,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"44","depth":16,"bounds":{"left":0.19896941,"top":0.7246608,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"45","depth":16,"bounds":{"left":0.59607714,"top":0.7246608,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"45","depth":16,"bounds":{"left":0.19896941,"top":0.7438148,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"-","depth":18,"bounds":{"left":0.21060506,"top":0.7438148,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.23503989,"top":0.7438148,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"values","depth":18,"bounds":{"left":0.23753324,"top":0.7438148,"width":0.014461436,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=","depth":18,"bounds":{"left":0.25199467,"top":0.7438148,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.25914228,"top":0.7438148,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"crmService","depth":18,"bounds":{"left":0.26146942,"top":0.7438148,"width":0.024102394,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.2855718,"top":0.7438148,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"importPicklistValues","depth":18,"bounds":{"left":0.29022607,"top":0.7438148,"width":0.048038565,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.3382646,"top":0.7438148,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.34075797,"top":0.7438148,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"playbook","depth":18,"bounds":{"left":0.3430851,"top":0.7438148,"width":0.019115692,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.3622008,"top":0.7438148,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"getActivityField","depth":18,"bounds":{"left":0.36702126,"top":0.7438148,"width":0.038397606,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"());","depth":18,"bounds":{"left":0.40541887,"top":0.7438148,"width":0.009640957,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"46","depth":16,"bounds":{"left":0.59607714,"top":0.7438148,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":0.7438148,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"try","depth":18,"bounds":{"left":0.63231385,"top":0.7438148,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"{","depth":18,"bounds":{"left":0.63946146,"top":0.7438148,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"47","depth":16,"bounds":{"left":0.59607714,"top":0.7629689,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":0.7629689,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.6419548,"top":0.7629689,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"crmService","depth":18,"bounds":{"left":0.6442819,"top":0.7629689,"width":0.023936171,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=","depth":18,"bounds":{"left":0.6682181,"top":0.7629689,"width":0.00731383,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.6755319,"top":0.7629689,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"this","depth":18,"bounds":{"left":0.67785907,"top":0.7629689,"width":0.009640957,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.6875,"top":0.7629689,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"crmResolver","depth":18,"bounds":{"left":0.69232047,"top":0.7629689,"width":0.02642952,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.71875,"top":0.7629689,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"resolveForTeam","depth":18,"bounds":{"left":0.7234042,"top":0.7629689,"width":0.03374335,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.7571476,"top":0.7629689,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.75947475,"top":0.7629689,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"playbook","depth":18,"bounds":{"left":0.76180184,"top":0.7629689,"width":0.019281914,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.78108376,"top":0.7629689,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"getTeam","depth":18,"bounds":{"left":0.7859042,"top":0.7629689,"width":0.016788565,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"());","depth":18,"bounds":{"left":0.80269283,"top":0.7629689,"width":0.009474734,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"48","depth":16,"bounds":{"left":0.59607714,"top":0.7821229,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":0.7821229,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.6419548,"top":0.7821229,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"crmService","depth":18,"bounds":{"left":0.6442819,"top":0.7821229,"width":0.023936171,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.6682181,"top":0.7821229,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"syncField","depth":18,"bounds":{"left":0.67303854,"top":0.7821229,"width":0.021609042,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.6946476,"top":0.7821229,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.69714093,"top":0.7821229,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"playbook","depth":18,"bounds":{"left":0.6994681,"top":0.7821229,"width":0.019281914,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.71875,"top":0.7821229,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"getActivityField","depth":18,"bounds":{"left":0.7234042,"top":0.7821229,"width":0.038397606,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"());","depth":18,"bounds":{"left":0.76180184,"top":0.7821229,"width":0.009640957,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"49","depth":16,"bounds":{"left":0.59607714,"top":0.8012769,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":0.8012769,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.6419548,"top":0.8012769,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"values","depth":18,"bounds":{"left":0.6442819,"top":0.8012769,"width":0.014461436,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=","depth":18,"bounds":{"left":0.6587433,"top":0.8012769,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.66589093,"top":0.8012769,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"crmService","depth":18,"bounds":{"left":0.6682181,"top":0.8012769,"width":0.024102394,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.69232047,"top":0.8012769,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"importPicklistValues","depth":18,"bounds":{"left":0.69714093,"top":0.8012769,"width":0.047872342,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.7450133,"top":0.8012769,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.7475067,"top":0.8012769,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"playbook","depth":18,"bounds":{"left":0.74983376,"top":0.8012769,"width":0.019281914,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.7691157,"top":0.8012769,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"getActivityField","depth":18,"bounds":{"left":0.77393615,"top":0.8012769,"width":0.038231384,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"());","depth":18,"bounds":{"left":0.8121675,"top":0.8012769,"width":0.009640957,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"50","depth":16,"bounds":{"left":0.59607714,"top":0.820431,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":0.820431,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"}","depth":18,"bounds":{"left":0.61319816,"top":0.820431,"width":0.023936171,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"catch","depth":18,"bounds":{"left":0.6371343,"top":0.820431,"width":0.011968086,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.6491024,"top":0.820431,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Throwable","depth":18,"bounds":{"left":0.65392286,"top":0.820431,"width":0.021609042,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.67785907,"top":0.820431,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"e","depth":18,"bounds":{"left":0.6803524,"top":0.820431,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":") {","depth":18,"bounds":{"left":0.68267953,"top":0.820431,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"51","depth":16,"bounds":{"left":0.59607714,"top":0.839585,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":0.839585,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Log::","depth":18,"bounds":{"left":0.61319816,"top":0.839585,"width":0.040724736,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"warning","depth":18,"bounds":{"left":0.65392286,"top":0.839585,"width":0.016788565,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.67071146,"top":0.839585,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'","depth":18,"bounds":{"left":0.67303854,"top":0.839585,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"[ImportActivityTypes] CRM API failed, falling back to database values","depth":18,"bounds":{"left":0.6755319,"top":0.839585,"width":0.16555852,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'","depth":18,"bounds":{"left":0.84109044,"top":0.839585,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", [","depth":18,"bounds":{"left":0.8434175,"top":0.839585,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":16,"bounds":{"left":0.59607714,"top":0.858739,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":0.858739,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'","depth":18,"bounds":{"left":0.65142953,"top":0.858739,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"playbook_id","depth":18,"bounds":{"left":0.65392286,"top":0.858739,"width":0.02642952,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'","depth":18,"bounds":{"left":0.6803524,"top":0.858739,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=>","depth":18,"bounds":{"left":0.68267953,"top":0.858739,"width":0.009640957,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.69232047,"top":0.858739,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"playbook","depth":18,"bounds":{"left":0.6946476,"top":0.858739,"width":0.019281914,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.71392953,"top":0.858739,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"getId","depth":18,"bounds":{"left":0.71875,"top":0.858739,"width":0.011968086,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(),","depth":18,"bounds":{"left":0.7307181,"top":0.858739,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"53","depth":16,"bounds":{"left":0.59607714,"top":0.87789303,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":0.87789303,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'","depth":18,"bounds":{"left":0.65142953,"top":0.87789303,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"team_id","depth":18,"bounds":{"left":0.65392286,"top":0.87789303,"width":0.016788565,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'","depth":18,"bounds":{"left":0.67071146,"top":0.87789303,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=>","depth":18,"bounds":{"left":0.67303854,"top":0.87789303,"width":0.009640957,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.68267953,"top":0.87789303,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"playbook","depth":18,"bounds":{"left":0.68517286,"top":0.87789303,"width":0.019115692,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.70428854,"top":0.87789303,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"getTeamId","depth":18,"bounds":{"left":0.70910907,"top":0.87789303,"width":0.021609042,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(),","depth":18,"bounds":{"left":0.7307181,"top":0.87789303,"width":0.0071476065,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"54","depth":16,"bounds":{"left":0.59607714,"top":0.8970471,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":0.8970471,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'","depth":18,"bounds":{"left":0.65142953,"top":0.8970471,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"error","depth":18,"bounds":{"left":0.65392286,"top":0.8970471,"width":0.011968086,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'","depth":18,"bounds":{"left":0.66589093,"top":0.8970471,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=>","depth":18,"bounds":{"left":0.6682181,"top":0.8970471,"width":0.009640957,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.67785907,"top":0.8970471,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"e","depth":18,"bounds":{"left":0.6803524,"top":0.8970471,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.68267953,"top":0.8970471,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"getMessage","depth":18,"bounds":{"left":0.6875,"top":0.8970471,"width":0.023936171,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(),","depth":18,"bounds":{"left":0.71143615,"top":0.8970471,"width":0.00731383,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"55","depth":16,"bounds":{"left":0.59607714,"top":0.9162011,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":0.9162011,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"]);","depth":18,"bounds":{"left":0.61319816,"top":0.9162011,"width":0.035904255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"56","depth":16,"bounds":{"left":0.59607714,"top":0.9353551,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":0.9353551,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"}","depth":18,"bounds":{"left":0.61319816,"top":0.9353551,"width":0.02144282,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"46","depth":16,"bounds":{"left":0.19896941,"top":0.9545092,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"57","depth":16,"bounds":{"left":0.59607714,"top":0.9545092,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"47","depth":16,"bounds":{"left":0.19896941,"top":0.9736632,"width":0.004654255,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"if","depth":18,"bounds":{"left":0.23503989,"top":0.9736632,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.23986037,"top":0.9736632,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"empty","depth":18,"bounds":{"left":0.24468085,"top":0.9736632,"width":0.011968086,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.25664893,"top":0.9736632,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.25914228,"top":0.9736632,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"values","depth":18,"bounds":{"left":0.26146942,"top":0.9736632,"width":0.014461436,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")) {","depth":18,"bounds":{"left":0.27593085,"top":0.9736632,"width":0.009640957,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"58","depth":16,"bounds":{"left":0.59607714,"top":0.9736632,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"if","depth":18,"bounds":{"left":0.63231385,"top":0.9736632,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.6371343,"top":0.9736632,"width":0.0048204786,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"empty","depth":18,"bounds":{"left":0.6419548,"top":0.9736632,"width":0.011968086,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.65392286,"top":0.9736632,"width":0.0023271276,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.65625,"top":0.9736632,"width":0.002493351,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"values","depth":18,"bounds":{"left":0.6587433,"top":0.9736632,"width":0.014295213,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")) {","depth":18,"bounds":{"left":0.67303854,"top":0.9736632,"width":0.009640957,"height":0.011572227},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"48","depth":16,"bounds":{"left":0.19896941,"top":0.9928172,"width":0.004654255,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.24468085,"top":0.9928172,"width":0.002493351,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"values","depth":18,"bounds":{"left":0.2471742,"top":0.9928172,"width":0.014295213,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=","depth":18,"bounds":{"left":0.26146942,"top":0.9928172,"width":0.00731383,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.26878324,"top":0.9928172,"width":0.0023271276,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"this","depth":18,"bounds":{"left":0.2711104,"top":0.9928172,"width":0.009640957,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.28075132,"top":0.9928172,"width":0.0048204786,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"fetchActivityFieldValues","depth":18,"bounds":{"left":0.2855718,"top":0.9928172,"width":0.057513297,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.3430851,"top":0.9928172,"width":0.0023271276,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.34541222,"top":0.9928172,"width":0.002493351,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"playbook","depth":18,"bounds":{"left":0.34790558,"top":0.9928172,"width":0.019115692,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.36702126,"top":0.9928172,"width":0.0048204786,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"getActivityField","depth":18,"bounds":{"left":0.37184176,"top":0.9928172,"width":0.038397606,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"());","depth":18,"bounds":{"left":0.41023937,"top":0.9928172,"width":0.009640957,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"59","depth":16,"bounds":{"left":0.59607714,"top":0.9928172,"width":0.0048204786,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.6419548,"top":0.9928172,"width":0.0023271276,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"values","depth":18,"bounds":{"left":0.6442819,"top":0.9928172,"width":0.014461436,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=","depth":18,"bounds":{"left":0.6587433,"top":0.9928172,"width":0.0071476065,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.66589093,"top":0.9928172,"width":0.0023271276,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"this","depth":18,"bounds":{"left":0.6682181,"top":0.9928172,"width":0.009640957,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.67785907,"top":0.9928172,"width":0.0048204786,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"fetchActivityFieldValues","depth":18,"bounds":{"left":0.68267953,"top":0.9928172,"width":0.057513297,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.74019283,"top":0.9928172,"width":0.002493351,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.74268615,"top":0.9928172,"width":0.0023271276,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"playbook","depth":18,"bounds":{"left":0.7450133,"top":0.9928172,"width":0.019281914,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.7642952,"top":0.9928172,"width":0.0048204786,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"getActivityField","depth":18,"bounds":{"left":0.7691157,"top":0.9928172,"width":0.038397606,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"());","depth":18,"bounds":{"left":0.8075133,"top":0.9928172,"width":0.009474734,"height":0.007182777},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"60","depth":16,"bounds":{"left":0.59607714,"top":1.0,"width":0.0048204786,"height":-0.011971235},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":1.0,"width":0.0023271276,"height":-0.011971235},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"61","depth":16,"bounds":{"left":0.59607714,"top":1.0,"width":0.0048204786,"height":-0.031125307},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":1.0,"width":0.0023271276,"height":-0.031125307},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Log::","depth":18,"bounds":{"left":0.61319816,"top":1.0,"width":0.040724736,"height":-0.031125307},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"info","depth":18,"bounds":{"left":0.65392286,"top":1.0,"width":0.009640957,"height":-0.031125307},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"bounds":{"left":0.66356385,"top":1.0,"width":0.0023271276,"height":-0.031125307},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'","depth":18,"bounds":{"left":0.66589093,"top":1.0,"width":0.0023271276,"height":-0.031125307},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"[ImportActivityTypes] Using database fallback for categories","depth":18,"bounds":{"left":0.6682181,"top":1.0,"width":0.14394946,"height":-0.031125307},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'","depth":18,"bounds":{"left":0.8121675,"top":1.0,"width":0.002493351,"height":-0.031125307},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", [","depth":18,"bounds":{"left":0.8146609,"top":1.0,"width":0.0071476065,"height":-0.031125307},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"62","depth":16,"bounds":{"left":0.59607714,"top":1.0,"width":0.0048204786,"height":-0.05027938},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":1.0,"width":0.0023271276,"height":-0.05027938},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'","depth":18,"bounds":{"left":0.65142953,"top":1.0,"width":0.002493351,"height":-0.05027938},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"playbook_id","depth":18,"bounds":{"left":0.65392286,"top":1.0,"width":0.02642952,"height":-0.05027938},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'","depth":18,"bounds":{"left":0.6803524,"top":1.0,"width":0.0023271276,"height":-0.05027938},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=>","depth":18,"bounds":{"left":0.68267953,"top":1.0,"width":0.009640957,"height":-0.05027938},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.69232047,"top":1.0,"width":0.0023271276,"height":-0.05027938},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"playbook","depth":18,"bounds":{"left":0.6946476,"top":1.0,"width":0.019281914,"height":-0.05027938},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.71392953,"top":1.0,"width":0.0048204786,"height":-0.05027938},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"getId","depth":18,"bounds":{"left":0.71875,"top":1.0,"width":0.011968086,"height":-0.05027938},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(),","depth":18,"bounds":{"left":0.7307181,"top":1.0,"width":0.0071476065,"height":-0.05027938},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"63","depth":16,"bounds":{"left":0.59607714,"top":1.0,"width":0.0048204786,"height":-0.06943333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":1.0,"width":0.0023271276,"height":-0.06943333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'","depth":18,"bounds":{"left":0.65142953,"top":1.0,"width":0.002493351,"height":-0.06943333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"field_values_count","depth":18,"bounds":{"left":0.65392286,"top":1.0,"width":0.043218084,"height":-0.06943333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"'","depth":18,"bounds":{"left":0.69714093,"top":1.0,"width":0.0023271276,"height":-0.06943333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=>","depth":18,"bounds":{"left":0.6994681,"top":1.0,"width":0.009640957,"height":-0.06943333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"bounds":{"left":0.70910907,"top":1.0,"width":0.0023271276,"height":-0.06943333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"values","depth":18,"bounds":{"left":0.71143615,"top":1.0,"width":0.014461436,"height":-0.06943333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"->","depth":18,"bounds":{"left":0.7258976,"top":1.0,"width":0.0048204786,"height":-0.06943333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"count","depth":18,"bounds":{"left":0.7307181,"top":1.0,"width":0.011968086,"height":-0.06943333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(),","depth":18,"bounds":{"left":0.74268615,"top":1.0,"width":0.0071476065,"height":-0.06943333},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"64","depth":16,"bounds":{"left":0.59607714,"top":1.0,"width":0.0048204786,"height":-0.0885874},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"bounds":{"left":0.607879,"top":1.0,"width":0.0023271276,"height":-0.0885874},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"]);","depth":18,"bounds":{"left":0.61319816,"top":1.0,"width":0.035904255,"height":-0.0885874},"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"49","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"}","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"65","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"}","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"50","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"66","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"67","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"createdCount","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"=","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":";","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"68","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"51","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/** @var stdClass{label: string} $value */","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"69","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/** @var stdClass{label: string} $value */","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"52","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"foreach","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"values","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"as","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"value","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":") {","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"70","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"foreach","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"values","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"as","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"value","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":") {","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"53","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"data","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"= [","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"71","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"$","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"data","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"= [","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"@@ -65,6 +83,15 @@ public function handle(PlaybookCreated $event): void","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"65","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"}","depth":18,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"83","depth":16,"help_text":"","role_description":"text","subrole":"AXUnknown"}]...
|
-8958314908146943048
|
3597634578680171944
|
idle
|
accessibility
|
NULL
|
🚀 Q2 Kick-Off - Local in 🇬🇧 & 🇧🇬 at our 🏢/🏡 - 🚀 Q2 Kick-Off - Local in 🇬🇧 & 🇧🇬 at our 🏢/🏡 - Apr 2 - [EMAIL] - Jiminny Mail
mail.google.com
Platform Sprint 2 Q2 - Platform Team - Scrum Board - Jira
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
JY-20698 handle failed field sync on playbook import activity types by LakyLak · Pull Request #11988 · jiminny/app
Close tab
Jiminny MCP Connector - Product - Confluence
Jiminny MCP Connector - Product - Confluence
[JY-20676] Notify the user if a Panorama prompts is deleted but is used in AJ Report - Jira
[JY-20676] Notify the user if a Panorama prompts is deleted but is used in AJ Report - Jira
🚀 Q2 Kick-Off - Local in 🇬🇧 & 🇧🇬 at our 🏢/🏡 - Apr 2 - [EMAIL] - Jiminny Mail
🚀 Q2 Kick-Off - Local in 🇬🇧 & 🇧🇬 at our 🏢/🏡 - Apr 2 - [EMAIL] - Jiminny Mail
Close tab
[JY-20500] Batch initial sync for Salesforce - Jira
[JY-20500] Batch initial sync for Salesforce - Jira
Feed — jiminny — Sentry
Feed — jiminny — Sentry
Jiminny
Jiminny
New Tab
Customize sidebar
Open Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
Skip to content
Skip to content
Open menu
Homepage (g then d)
jiminny
jiminny
app
app
Search or jump to…
Type
/
to search
Chat with Copilot
Open Copilot…
Create new...
Issues(g then i)
Pull requests
Repositories
You have unread notifications(g then n)
Open user navigation menu
Repository navigation
Repository navigation
Code
Code
Pull requests (31)
Pull requests
(
31
)
Agents
Agents
Actions
Actions
Wiki
Wiki
Security and quality (21)
Security and quality
(
21
)
Insights
Insights
Settings
Settings
Important update
Important update
On April 24 we'll start using GitHub Copilot interaction data for AI model training unless you opt out.
Review this update
Review this update
and manage your preferences in your
GitHub account settings
GitHub account settings
.
Dismiss banner
JY-20698 handle failed field sync on playbook import activity types #11988 Edit title
JY-20698 handle failed field sync on playbook import activity types
#
11988
Edit title
Preview
Preview
Checks pending
Checks pending
Code
Code
Open
LakyLak
LakyLak
wants to merge 2 commits into
master
master
from
JY-20698-fix-SF-activity-types-on-new-playbook
JY-20698-fix-SF-activity-types-on-new-playbook
Copy head branch name to clipboard
Lines changed: 200 additions & 4 deletions
Conversation (1)
Conversation
(
1
)
Commits (2)
Commits
(
2
)
Checks (4)
Checks
(
4
)
Files changed (2)
Files changed
(
2
)
Pull Request Toolbar
Pull Request Toolbar
Collapse file tree
All commits
All commits
Refresh
Refresh
0
/
2
viewed
Submit review
Submit
review
Open diff view settings
Open overview panel
Open comments panel
(
0
)
Filter files…
Filter options
File tree
File tree
app/Listeners/Crm
ImportActivityTypes.php
ImportActivityTypes.php
tests/Unit/Listeners/Crm
ImportActivityTypesTest.php
ImportActivityTypesTest.php
Collapse file
app/Listeners/Crm/ImportActivityTypes.php
app/Listeners/Crm/ImportActivityTypes.php
app/Listeners/Crm/ImportActivityTypes.php
Copy file name to clipboard
Expand all lines: app/Listeners/Crm/ImportActivityTypes.php
Lines changed: 30 additions & 3 deletions
Not Viewed
Viewed
Comment on this file
More options
Original file line number
Original file line
Diff line number
Diff line change
@@ -11,8 +11,10 @@
11
use
Jiminny
\
Repositories
\
Crm
\
FieldRepository
;
11
use
Jiminny
\
Repositories
\
Crm
\
FieldRepository
;
12
use
Jiminny
\
Repositories
\
PlaybookCategoryRepository
;
12
use
Jiminny
\
Repositories
\
PlaybookCategoryRepository
;
13
use
Illuminate
\
Contracts
\
Queue
\
ShouldQueue
;
13
use
Illuminate
\
Contracts
\
Queue
\
ShouldQueue
;
14
+
use
Illuminate
\
Support
\
Facades
\
Log
;
14
use
Jiminny
\
Services
\
ResolveTeamCrmConnection
;
15
use
Jiminny
\
Services
\
ResolveTeamCrmConnection
;
15
use
stdClass
;
16
use
stdClass
;
17
+
use
Throwable
;
16
18
17
class
ImportActivityTypes
implements
ShouldQueue
19
class
ImportActivityTypes
implements
ShouldQueue
18
{
20
{
@@ -39,15 +41,31 @@ public function handle(PlaybookCreated $event): void
39
return
;
41
return
;
40
}
42
}
41
43
42
-
$
crmService
=
$
this
->
crmResolver
->
resolveForTeam
(
$
playbook
->
getTeam
());
44
+
$
values
= [];
43
-
$
crmService
->
syncField
(
$
playbook
->
getActivityField
());
44
45
45
-
$
values
=
$
crmService
->
importPicklistValues
(
$
playbook
->
getActivityField
());
46
+
try
{
47
+
$
crmService
=
$
this
->
crmResolver
->
resolveForTeam
(
$
playbook
->
getTeam
());
48
+
$
crmService
->
syncField
(
$
playbook
->
getActivityField
());
49
+
$
values
=
$
crmService
->
importPicklistValues
(
$
playbook
->
getActivityField
());
50
+
}
catch
(
Throwable
$
e
) {
51
+
Log::
warning
(
'
[ImportActivityTypes] CRM API failed, falling back to database values
'
, [
52
+
'
playbook_id
'
=>
$
playbook
->
getId
(),
53
+
'
team_id
'
=>
$
playbook
->
getTeamId
(),
54
+
'
error
'
=>
$
e
->
getMessage
(),
55
+
]);
56
+
}
46
57
47
if
(
empty
(
$
values
)) {
58
if
(
empty
(
$
values
)) {
48
$
values
=
$
this
->
fetchActivityFieldValues
(
$
playbook
->
getActivityField
());
59
$
values
=
$
this
->
fetchActivityFieldValues
(
$
playbook
->
getActivityField
());
60
+
61
+
Log::
info
(
'
[ImportActivityTypes] Using database fallback for categories
'
, [
62
+
'
playbook_id
'
=>
$
playbook
->
getId
(),
63
+
'
field_values_count
'
=>
$
values
->
count
(),
64
+
]);
49
}
65
}
50
66
67
+
$
createdCount
=
0
;
68
+
51
/** @var stdClass{label: string} $value */
69
/** @var stdClass{label: string} $value */
52
foreach
(
$
values
as
$
value
) {
70
foreach
(
$
values
as
$
value
) {
53
$
data
= [
71
$
data
= [
@@ -65,6 +83,15 @@ public function handle(PlaybookCreated $event): void
65
}
83...
|
60750
|
|
69781
|
1617
|
0
|
2026-04-22T08:58:17.975658+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848297975_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
5866060114226016799
|
3811319881014486992
|
click
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69784
|
1617
|
2
|
2026-04-22T08:58:21.795372+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848301795_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
5866060114226016799
|
3811319881014486992
|
click
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69785
|
1616
|
2
|
2026-04-22T08:58:23.468605+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848303468_m1.jpg...
|
Firefox
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
-3373817829239670682
|
3811319881014486992
|
app_switch
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69513
|
1598
|
7
|
2026-04-22T08:15:31.675595+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845731675_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
visual_change
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69514
|
1599
|
12
|
2026-04-22T08:15:46.094193+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845746094_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
visual_change
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
69511
|
|
69515
|
1598
|
8
|
2026-04-22T08:16:02.317480+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845762317_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
visual_change
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
69513
|
|
69516
|
1599
|
13
|
2026-04-22T08:16:17.800300+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845777800_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
idle
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69716
|
1613
|
7
|
2026-04-22T08:50:29.289231+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776847829289_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
click
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69717
|
1612
|
7
|
2026-04-22T08:50:30.110412+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776847830110_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
visual_change
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
69714
|
|
69718
|
1613
|
8
|
2026-04-22T08:51:00.716571+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776847860716_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
idle
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69719
|
1612
|
8
|
2026-04-22T08:51:01.564651+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776847861564_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
idle
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69750
|
1614
|
7
|
2026-04-22T08:54:59.375584+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848099375_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
click
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69751
|
1615
|
11
|
2026-04-22T08:55:03.442274+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848103442_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
click
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69762
|
1614
|
12
|
2026-04-22T08:56:09.060649+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848169060_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
click
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69763
|
1615
|
18
|
2026-04-22T08:56:09.151372+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848169151_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
click
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
69761
|
|
69764
|
1614
|
13
|
2026-04-22T08:56:40.326505+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848200326_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
idle
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69765
|
1615
|
19
|
2026-04-22T08:56:43.122855+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848203122_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
idle
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69772
|
1614
|
17
|
2026-04-22T08:56:59.812477+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848219812_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
click
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69780
|
1616
|
0
|
2026-04-22T08:58:08.052965+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848288052_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16\n\n INFO Webhook Metrics — 2026-04-16. \n\n📊\u0000 Webhook Metrics Summary\n==========================================\nDate: 2026-04-16\nFilters: Object: contact\nTotal Teams: 106\nTotal Webhooks: 379668\n\n🏢\u0000 Config 993 (Pinpoint Payments - 1068) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 property_change: 24 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 988 (Teya - 1057) - 38039 webhooks\n 📦\u0000 contact: 38039 webhooks\n 🔔\u0000 association_change: 5554 events, 0 properties\n 🔔\u0000 property_change: 21494 events, 9 properties\n 🔔\u0000 creation: 10991 events, 0 properties\n\n🏢\u0000 Config 872 (In Professional Development - 921) - 205 webhooks\n 📦\u0000 contact: 205 webhooks\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 property_change: 125 events, 6 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n\n🏢\u0000 Config 925 (Kickflip - 992) - 1471 webhooks\n 📦\u0000 contact: 1471 webhooks\n 🔔\u0000 association_change: 157 events, 0 properties\n 🔔\u0000 property_change: 1255 events, 7 properties\n 🔔\u0000 creation: 59 events, 0 properties\n\n🏢\u0000 Config 711 (Oplit - 732) - 363 webhooks\n 📦\u0000 contact: 363 webhooks\n 🔔\u0000 association_change: 124 events, 0 properties\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 206 events, 9 properties\n\n🏢\u0000 Config 799 (Forecastr - 850) - 642 webhooks\n 📦\u0000 contact: 642 webhooks\n 🔔\u0000 property_change: 445 events, 9 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
3290532042628205253
|
3811319881014486992
|
visual_change
|
accessibility
|
NULL
|
🔔 property_change: 94 events, 9 properties
📦 🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
INFO Webhook Metrics — 2026-04-16.
📊 Webhook Metrics Summary
==========================================
Date: 2026-04-16
Filters: Object: contact
Total Teams: 106
Total Webhooks: 379668
🏢 Config 993 (Pinpoint Payments - 1068) - 31 webhooks
📦 contact: 31 webhooks
🔔 association_change: 4 events, 0 properties
🔔 property_change: 24 events, 7 properties
🔔 creation: 3 events, 0 properties
🏢 Config 988 (Teya - 1057) - 38039 webhooks
📦 contact: 38039 webhooks
🔔 association_change: 5554 events, 0 properties
🔔 property_change: 21494 events, 9 properties
🔔 creation: 10991 events, 0 properties
🏢 Config 872 (In Professional Development - 921) - 205 webhooks
📦 contact: 205 webhooks
🔔 creation: 15 events, 0 properties
🔔 property_change: 125 events, 6 properties
🔔 association_change: 65 events, 0 properties
🏢 Config 925 (Kickflip - 992) - 1471 webhooks
📦 contact: 1471 webhooks
🔔 association_change: 157 events, 0 properties
🔔 property_change: 1255 events, 7 properties
🔔 creation: 59 events, 0 properties
🏢 Config 711 (Oplit - 732) - 363 webhooks
📦 contact: 363 webhooks
🔔 association_change: 124 events, 0 properties
🔔 creation: 33 events, 0 properties
🔔 property_change: 206 events, 9 properties
🏢 Config 799 (Forecastr - 850) - 642 webhooks
📦 contact: 642 webhooks
🔔 property_change: 445 events, 9 properties
🔔 creation: 69 events, 0 properties
🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69792
|
1617
|
6
|
2026-04-22T08:59:56.872044+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848396872_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 1938 events, 7 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids","depth":4,"value":"🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
5987123104150348572
|
3779697926601746384
|
click
|
accessibility
|
NULL
|
🔔 property_change: 1938 events, 7 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
69791
|
|
69793
|
1616
|
6
|
2026-04-22T08:59:57.481821+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848397481_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 1938 events, 7 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids","depth":4,"value":"🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
5987123104150348572
|
3779697926601746384
|
click
|
accessibility
|
NULL
|
🔔 property_change: 1938 events, 7 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
69790
|
|
69790
|
1616
|
5
|
2026-04-22T08:59:33.718445+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848373718_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 1938 events, 7 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
8299298158192114319
|
3779697926601746384
|
visual_change
|
accessibility
|
NULL
|
🔔 property_change: 1938 events, 7 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69791
|
1617
|
5
|
2026-04-22T08:59:53.100478+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848393100_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 1938 events, 7 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
8299298158192114319
|
3779697926601746384
|
click
|
accessibility
|
NULL
|
🔔 property_change: 1938 events, 7 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69794
|
1616
|
7
|
2026-04-22T09:00:05.583998+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848405583_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 property_change: 142 events, 9 properties
🏢 C 🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 60
Total IDs across all keys [PASSWORD_DOTS] 18,553
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.14 MB
ids keys [PASSWORD_DOTS] 1.14 MB
• batch_sync_contact:ids:1019:all
• batch_sync_company:ids:1019:all
• batch_sync_company:ids:966:all
• batch_sync_contact:ids:966:all
• batch_sync_deal:ids:966:all
• batch_sync_deal:ids:834:all
• batch_sync_contact:ids:605:all
• batch_sync_contact:ids:834:all
• batch_sync_deal:ids:1019:all
• batch_sync_company:ids:834:all
• batch_sync_contact:ids:988:all
• batch_sync_deal:ids:988:all
• batch_sync_company:ids:605:all
• batch_sync_deal:ids:272:all
• batch_sync_contact:ids:802:all
• batch_sync_company:ids:1060:all
• batch_sync_contact:ids:1056:all
• batch_sync_contact:ids:550:all
• batch_sync_deal:ids:265:all
• batch_sync_contact:ids:518:all
• batch_sync_contact:ids:533:all
• batch_sync_contact:ids:1037:all
• batch_sync_company:ids:339:all
• batch_sync_company:ids:1051:all
• batch_sync_company:ids:1063:all
• batch_sync_contact:ids:104:all
• batch_sync_contact:ids:265:all
• batch_sync_contact:ids:339:all
• batch_sync_contact:ids:581:all
• batch_sync_contact:ids:617:all
• batch_sync_contact:ids:872:all
• batch_sync_deal:ids:300:all
• batch_sync_deal:ids:533:all
• batch_sync_company:ids:104:all
• batch_sync_company:ids:265:all
• batch_sync_company:ids:272:all
• batch_sync_company:ids:300:all
• batch_sync_company:ids:428:all
• batch_sync_company:ids:518:all
• batch_sync_company:ids:530:all
• batch_sync_company:ids:550:all
• batch_sync_company:ids:802:all
• batch_sync_company:ids:882:all
• batch_sync_company:ids:988:all
• batch_sync_company:ids:1056:all
• batch_sync_contact:ids:272:all
• batch_sync_contact:ids:300:all
• batch_sync_contact:ids:428:all
• batch_sync_contact:ids:591:all
• batch_sync_contact:ids:675:all
• batch_sync_contact:ids:882:all
• batch_sync_contact:ids:900:all
• batch_sync_contact:ids:1051:all
• batch_sync_contact:ids:1060:all
• batch_sync_contact:ids:1063:all
• batch_sync_deal:ids:339:all
• batch_sync_deal:ids:550:all
• batch_sync_deal:ids:900:all
• batch_sync_deal:ids:1062:all
• batch_sync_deal:ids:1063:all
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 60 \n Total IDs across all keys ................................................................................................................. 18,553 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.14 MB \n ids keys ................................................................................................................................. 1.14 MB \n\n • batch_sync_contact:ids:1019:all\n • batch_sync_company:ids:1019:all\n • batch_sync_company:ids:966:all\n • batch_sync_contact:ids:966:all\n • batch_sync_deal:ids:966:all\n • batch_sync_deal:ids:834:all\n • batch_sync_contact:ids:605:all\n • batch_sync_contact:ids:834:all\n • batch_sync_deal:ids:1019:all\n • batch_sync_company:ids:834:all\n • batch_sync_contact:ids:988:all\n • batch_sync_deal:ids:988:all\n • batch_sync_company:ids:605:all\n • batch_sync_deal:ids:272:all\n • batch_sync_contact:ids:802:all\n • batch_sync_company:ids:1060:all\n • batch_sync_contact:ids:1056:all\n • batch_sync_contact:ids:550:all\n • batch_sync_deal:ids:265:all\n • batch_sync_contact:ids:518:all\n • batch_sync_contact:ids:533:all\n • batch_sync_contact:ids:1037:all\n • batch_sync_company:ids:339:all\n • batch_sync_company:ids:1051:all\n • batch_sync_company:ids:1063:all\n • batch_sync_contact:ids:104:all\n • batch_sync_contact:ids:265:all\n • batch_sync_contact:ids:339:all\n • batch_sync_contact:ids:581:all\n • batch_sync_contact:ids:617:all\n • batch_sync_contact:ids:872:all\n • batch_sync_deal:ids:300:all\n • batch_sync_deal:ids:533:all\n • batch_sync_company:ids:104:all\n • batch_sync_company:ids:265:all\n • batch_sync_company:ids:272:all\n • batch_sync_company:ids:300:all\n • batch_sync_company:ids:428:all\n • batch_sync_company:ids:518:all\n • batch_sync_company:ids:530:all\n • batch_sync_company:ids:550:all\n • batch_sync_company:ids:802:all\n • batch_sync_company:ids:882:all\n • batch_sync_company:ids:988:all\n • batch_sync_company:ids:1056:all\n • batch_sync_contact:ids:272:all\n • batch_sync_contact:ids:300:all\n • batch_sync_contact:ids:428:all\n • batch_sync_contact:ids:591:all\n • batch_sync_contact:ids:675:all\n • batch_sync_contact:ids:882:all\n • batch_sync_contact:ids:900:all\n • batch_sync_contact:ids:1051:all\n • batch_sync_contact:ids:1060:all\n • batch_sync_contact:ids:1063:all\n • batch_sync_deal:ids:339:all\n • batch_sync_deal:ids:550:all\n • batch_sync_deal:ids:900:all\n • batch_sync_deal:ids:1062:all\n • batch_sync_deal:ids:1063:all\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids","depth":4,"value":"🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 60 \n Total IDs across all keys ................................................................................................................. 18,553 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.14 MB \n ids keys ................................................................................................................................. 1.14 MB \n\n • batch_sync_contact:ids:1019:all\n • batch_sync_company:ids:1019:all\n • batch_sync_company:ids:966:all\n • batch_sync_contact:ids:966:all\n • batch_sync_deal:ids:966:all\n • batch_sync_deal:ids:834:all\n • batch_sync_contact:ids:605:all\n • batch_sync_contact:ids:834:all\n • batch_sync_deal:ids:1019:all\n • batch_sync_company:ids:834:all\n • batch_sync_contact:ids:988:all\n • batch_sync_deal:ids:988:all\n • batch_sync_company:ids:605:all\n • batch_sync_deal:ids:272:all\n • batch_sync_contact:ids:802:all\n • batch_sync_company:ids:1060:all\n • batch_sync_contact:ids:1056:all\n • batch_sync_contact:ids:550:all\n • batch_sync_deal:ids:265:all\n • batch_sync_contact:ids:518:all\n • batch_sync_contact:ids:533:all\n • batch_sync_contact:ids:1037:all\n • batch_sync_company:ids:339:all\n • batch_sync_company:ids:1051:all\n • batch_sync_company:ids:1063:all\n • batch_sync_contact:ids:104:all\n • batch_sync_contact:ids:265:all\n • batch_sync_contact:ids:339:all\n • batch_sync_contact:ids:581:all\n • batch_sync_contact:ids:617:all\n • batch_sync_contact:ids:872:all\n • batch_sync_deal:ids:300:all\n • batch_sync_deal:ids:533:all\n • batch_sync_company:ids:104:all\n • batch_sync_company:ids:265:all\n • batch_sync_company:ids:272:all\n • batch_sync_company:ids:300:all\n • batch_sync_company:ids:428:all\n • batch_sync_company:ids:518:all\n • batch_sync_company:ids:530:all\n • batch_sync_company:ids:550:all\n • batch_sync_company:ids:802:all\n • batch_sync_company:ids:882:all\n • batch_sync_company:ids:988:all\n • batch_sync_company:ids:1056:all\n • batch_sync_contact:ids:272:all\n • batch_sync_contact:ids:300:all\n • batch_sync_contact:ids:428:all\n • batch_sync_contact:ids:591:all\n • batch_sync_contact:ids:675:all\n • batch_sync_contact:ids:882:all\n • batch_sync_contact:ids:900:all\n • batch_sync_contact:ids:1051:all\n • batch_sync_contact:ids:1060:all\n • batch_sync_contact:ids:1063:all\n • batch_sync_deal:ids:339:all\n • batch_sync_deal:ids:550:all\n • batch_sync_deal:ids:900:all\n • batch_sync_deal:ids:1062:all\n • batch_sync_deal:ids:1063:all\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
5286538223874259777
|
3779979401578457040
|
visual_change
|
accessibility
|
NULL
|
🔔 property_change: 142 events, 9 properties
🏢 C 🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 60
Total IDs across all keys [PASSWORD_DOTS] 18,553
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.14 MB
ids keys [PASSWORD_DOTS] 1.14 MB
• batch_sync_contact:ids:1019:all
• batch_sync_company:ids:1019:all
• batch_sync_company:ids:966:all
• batch_sync_contact:ids:966:all
• batch_sync_deal:ids:966:all
• batch_sync_deal:ids:834:all
• batch_sync_contact:ids:605:all
• batch_sync_contact:ids:834:all
• batch_sync_deal:ids:1019:all
• batch_sync_company:ids:834:all
• batch_sync_contact:ids:988:all
• batch_sync_deal:ids:988:all
• batch_sync_company:ids:605:all
• batch_sync_deal:ids:272:all
• batch_sync_contact:ids:802:all
• batch_sync_company:ids:1060:all
• batch_sync_contact:ids:1056:all
• batch_sync_contact:ids:550:all
• batch_sync_deal:ids:265:all
• batch_sync_contact:ids:518:all
• batch_sync_contact:ids:533:all
• batch_sync_contact:ids:1037:all
• batch_sync_company:ids:339:all
• batch_sync_company:ids:1051:all
• batch_sync_company:ids:1063:all
• batch_sync_contact:ids:104:all
• batch_sync_contact:ids:265:all
• batch_sync_contact:ids:339:all
• batch_sync_contact:ids:581:all
• batch_sync_contact:ids:617:all
• batch_sync_contact:ids:872:all
• batch_sync_deal:ids:300:all
• batch_sync_deal:ids:533:all
• batch_sync_company:ids:104:all
• batch_sync_company:ids:265:all
• batch_sync_company:ids:272:all
• batch_sync_company:ids:300:all
• batch_sync_company:ids:428:all
• batch_sync_company:ids:518:all
• batch_sync_company:ids:530:all
• batch_sync_company:ids:550:all
• batch_sync_company:ids:802:all
• batch_sync_company:ids:882:all
• batch_sync_company:ids:988:all
• batch_sync_company:ids:1056:all
• batch_sync_contact:ids:272:all
• batch_sync_contact:ids:300:all
• batch_sync_contact:ids:428:all
• batch_sync_contact:ids:591:all
• batch_sync_contact:ids:675:all
• batch_sync_contact:ids:882:all
• batch_sync_contact:ids:900:all
• batch_sync_contact:ids:1051:all
• batch_sync_contact:ids:1060:all
• batch_sync_contact:ids:1063:all
• batch_sync_deal:ids:339:all
• batch_sync_deal:ids:550:all
• batch_sync_deal:ids:900:all
• batch_sync_deal:ids:1062:all
• batch_sync_deal:ids:1063:all
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69788
|
1616
|
4
|
2026-04-22T08:59:23.118595+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848363118_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 association_change: 128 events, 0 properties
🏢 🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D","depth":4,"value":"🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
5119347814078428811
|
3779793584113362896
|
idle
|
accessibility
|
NULL
|
🔔 association_change: 128 events, 0 properties
🏢 🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
69786
|
|
69789
|
1617
|
4
|
2026-04-22T08:59:24.676638+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848364676_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 association_change: 128 events, 0 properties
🏢 🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D","depth":4,"value":"🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
5119347814078428811
|
3779793584113362896
|
idle
|
accessibility
|
NULL
|
🔔 association_change: 128 events, 0 properties
🏢 🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
69787
|
|
69786
|
1616
|
3
|
2026-04-22T08:58:40.464281+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848320464_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 association_change: 128 events, 0 properties
🏢 🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
4167874449453149318
|
3779793584113362896
|
visual_change
|
accessibility
|
NULL
|
🔔 association_change: 128 events, 0 properties
🏢 🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69787
|
1617
|
3
|
2026-04-22T08:58:53.243566+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776848333243_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 association_change: 128 events, 0 properties
🏢 🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🔔\u0000 association_change: 128 events, 0 properties\n\n🏢\u0000 Config 1044 (Sales Xceleration - 1109) - 160 webhooks\n 📦\u0000 contact: 160 webhooks\n 🔔\u0000 creation: 20 events, 0 properties\n 🔔\u0000 property_change: 119 events, 9 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n\n🏢\u0000 Config 900 (NationBuilder - 575) - 548 webhooks\n 📦\u0000 contact: 548 webhooks\n 🔔\u0000 property_change: 492 events, 9 properties\n 🔔\u0000 association_change: 33 events, 0 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 317 (PureGroup - 335) - 24 webhooks\n 📦\u0000 contact: 24 webhooks\n 🔔\u0000 property_change: 14 events, 7 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 480 (Flo Recruit - 506) - 225 webhooks\n 📦\u0000 contact: 225 webhooks\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 property_change: 179 events, 8 properties\n\n🏢\u0000 Config 48 (CleanCloud - 51) - 346 webhooks\n 📦\u0000 contact: 346 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 70 events, 0 properties\n 🔔\u0000 property_change: 246 events, 8 properties\n\n🏢\u0000 Config 675 (Juriba - 695) - 854 webhooks\n 📦\u0000 contact: 854 webhooks\n 🔔\u0000 property_change: 237 events, 9 properties\n 🔔\u0000 association_change: 608 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks\n 📦\u0000 contact: 301 webhooks\n 🔔\u0000 property_change: 134 events, 9 properties\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n\n🏢\u0000 Config 716 (Terpene Belt Farms - 737) - 106 webhooks\n 📦\u0000 contact: 106 webhooks\n 🔔\u0000 property_change: 72 events, 9 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n\n🏢\u0000 Config 921 (Matrak - 968) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 property_change: 17 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 8 events, 0 properties\n\n🏢\u0000 Config 1054 (Temelio - 1118) - 9791 webhooks\n 📦\u0000 contact: 9791 webhooks\n 🔔\u0000 association_change: 7838 events, 0 properties\n 🔔\u0000 property_change: 1938 events, 7 properties\n 🔔\u0000 creation: 15 events, 0 properties\n\n🏢\u0000 Config 1060 (Velatir - 1122) - 369 webhooks\n 📦\u0000 contact: 369 webhooks\n 🔔\u0000 property_change: 205 events, 8 properties\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 association_change: 114 events, 0 properties\n\n🏢\u0000 Config 272 (Bonham & Brook - 290) - 846 webhooks\n 📦\u0000 contact: 846 webhooks\n 🔔\u0000 property_change: 580 events, 9 properties\n 🔔\u0000 association_change: 195 events, 0 properties\n 🔔\u0000 creation: 71 events, 0 properties\n\n🏢\u0000 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks\n 📦\u0000 contact: 2023 webhooks\n 🔔\u0000 creation: 413 events, 0 properties\n 🔔\u0000 association_change: 235 events, 0 properties\n 🔔\u0000 property_change: 1375 events, 9 properties\n\n🏢\u0000 Config 64 (SalaryFinance - 70) - 295 webhooks\n 📦\u0000 contact: 295 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 181 events, 7 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 1056 (Chromatic - 1119) - 3707 webhooks\n 📦\u0000 contact: 3707 webhooks\n 🔔\u0000 creation: 445 events, 0 properties\n 🔔\u0000 property_change: 2421 events, 10 properties\n 🔔\u0000 association_change: 841 events, 0 properties\n\n🏢\u0000 Config 533 (Connectd - 559) - 5490 webhooks\n 📦\u0000 contact: 5490 webhooks\n 🔔\u0000 creation: 720 events, 0 properties\n 🔔\u0000 property_change: 3906 events, 8 properties\n 🔔\u0000 association_change: 864 events, 0 properties\n\n🏢\u0000 Config 1006 (Dovetail Software - 1076) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 property_change: 167 events, 9 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 25 events, 0 properties\n\n🏢\u0000 Config 154 (Learnerbly - 172) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n\n🏢\u0000 Config 892 (Logiwa - 942) - 473 webhooks\n 📦\u0000 contact: 473 webhooks\n 🔔\u0000 creation: 55 events, 0 properties\n 🔔\u0000 property_change: 322 events, 8 properties\n 🔔\u0000 association_change: 96 events, 0 properties\n\n🏢\u0000 Config 882 (GoGlobal - 933) - 6152 webhooks\n 📦\u0000 contact: 6152 webhooks\n 🔔\u0000 property_change: 4203 events, 9 properties\n 🔔\u0000 creation: 600 events, 0 properties\n 🔔\u0000 association_change: 1349 events, 0 properties\n\n🏢\u0000 Config 797 (Kodex - 848) - 1171 webhooks\n 📦\u0000 contact: 1171 webhooks\n 🔔\u0000 property_change: 504 events, 9 properties\n 🔔\u0000 creation: 44 events, 0 properties\n 🔔\u0000 association_change: 623 events, 0 properties\n\n🏢\u0000 Config 636 (ProofPilot - 657) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 142 events, 9 properties\n\n🏢\u0000 Config 1063 (Base.com - 1125) - 13152 webhooks\n 📦\u0000 contact: 13152 webhooks\n 🔔\u0000 property_change: 8211 events, 9 properties\n 🔔\u0000 creation: 1559 events, 0 properties\n 🔔\u0000 association_change: 3382 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 563 webhooks\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 553 webhooks\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 857 webhooks\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 10003 webhooks\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 740 webhooks\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 5587 webhooks\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 117 webhooks\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 494 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 465 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 67 webhooks\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 155 webhooks\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 635 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 95 webhooks\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 502 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 663 webhooks\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 76739 webhooks\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 265 webhooks\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 192 webhooks\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 55 webhooks\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 4 webhooks\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 406 webhooks\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 3686 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 2640 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 6217 webhooks\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 1739 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 8416 webhooks\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 2120 webhooks\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 805 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 852 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 1629 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 15 webhooks\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 133 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 101 webhooks\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 193 webhooks\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 202 webhooks\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 2124 webhooks\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 938 webhooks\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 54 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 1335 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 28 webhooks\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 115 webhooks\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 2924 webhooks\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 69 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 1517 webhooks\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 818 webhooks\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 173 webhooks\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 116 webhooks\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 204 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 71 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 127737 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 120 webhooks\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 1326 webhooks\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 89 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 6719 webhooks\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 22 webhooks\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 5321 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 493 webhooks\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 19 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 317 webhooks\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 310 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 425 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 248 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 26 webhooks\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 2447 webhooks\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2050 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 8 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 41 webhooks\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 6 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D\n\n INFO Scanning Redis keys (type: ids). \n\n\n Total keys found .............................................................................................................................. 49 \n Total IDs across all keys ................................................................................................................. 18,389 \n\n📊\u0000 Memory Overview\n Total Memory ............................................................................................................................. 1.13 MB \n ids keys ................................................................................................................................. 1.13 MB \n\nbatch_sync_contact:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 466.97 KB\n TTL: 20h 10m 27s\n Count: 7470\n Sample: 192113882790, 193310401030, 212054560910\n\nbatch_sync_company:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 262.66 KB\n TTL: 22h 35m 26s\n Count: 4201\n Sample: 54058865198, 53534969742, 53356927055\n\nbatch_sync_company:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 179.29 KB\n TTL: 23h 45m 18s\n Count: 2867\n Sample: 19906747085, 207999418554, 184286504170\n\nbatch_sync_contact:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 156.04 KB\n TTL: 23h 59m 7s\n Count: 2495\n Sample: 43992819404, 757894771934, 253879170267\n\nbatch_sync_deal:ids:966:all (Crowdcube Ltd - 263)\n Config ID: 966\n Type: set\n Memory: 65.1 KB\n TTL: 23h 16m 54s\n Count: 1040\n Sample: 497670033640, 494362104006, 309324126435\n\nbatch_sync_deal:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 5.91 KB\n TTL: 23h 59m 58s\n Count: 93\n Sample: 59246470017, 59428087704, 59420359534\n\nbatch_sync_contact:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 3.91 KB\n TTL: 23h 59m 20s\n Count: 61\n Sample: 535146627303, 723055312109, 723017067763\n\nbatch_sync_deal:ids:1019:all (SimpleConsign - 1088)\n Config ID: 1019\n Type: set\n Memory: 2.54 KB\n TTL: 13h 31m 55s\n Count: 39\n Sample: 59375026541, 59228306303, 59371957877\n\nbatch_sync_contact:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 2.16 KB\n TTL: 23h 59m 55s\n Count: 33\n Sample: 590873001, 216885003284, 661592951\n\nbatch_sync_deal:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 740 B\n TTL: 23h 59m 39s\n Count: 10\n Sample: 498531887302, 499721100477, 498526511294\n\nbatch_sync_company:ids:834:all (AnyVan.com - 882)\n Config ID: 834\n Type: set\n Memory: 612 B\n TTL: 23h 59m 58s\n Count: 8\n Sample: 54244322639, 4175252906, 54191014784\n\nbatch_sync_deal:ids:272:all (Bonham & Brook - 290)\n Config ID: 272\n Type: set\n Memory: 612 B\n TTL: 23h 59m 45s\n Count: 8\n Sample: 35813274661, 33165333665, 34943430225\n\nbatch_sync_contact:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 484 B\n TTL: 23h 59m 50s\n Count: 6\n Sample: 739727212737, 761097989318, 762396954872\n\nbatch_sync_company:ids:605:all (Encord - 630)\n Config ID: 605\n Type: set\n Memory: 420 B\n TTL: 23h 59m 13s\n Count: 5\n Sample: 427146854623, 207784633560, 427027236068\n\nbatch_sync_contact:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 420 B\n TTL: 23h 59m 48s\n Count: 5\n Sample: 213251276943, 185428854155, 180796761920\n\nbatch_sync_contact:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 292 B\n TTL: 23h 59m 43s\n Count: 3\n Sample: 30845302, 119476751, 217080439196\n\nbatch_sync_contact:ids:1056:all (Chromatic - 1119)\n Config ID: 1056\n Type: set\n Memory: 292 B\n TTL: 23h 59m 29s\n Count: 3\n Sample: 214594828075, 217098827959, 217099461219\n\nbatch_sync_deal:ids:265:all (Orbital - 283)\n Config ID: 265\n Type: set\n Memory: 292 B\n TTL: 23h 58m 8s\n Count: 3\n Sample: 53720624015, 54403717500, 55031434533\n\nbatch_sync_company:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 6860244995, 37052363791\n\nbatch_sync_company:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 228 B\n TTL: 23h 59m 56s\n Count: 2\n Sample: 51647678593, 53794634876\n\nbatch_sync_company:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 228 B\n TTL: 23h 59m 34s\n Count: 2\n Sample: 118441415884, 427146185975\n\nbatch_sync_contact:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 228 B\n TTL: 23h 59m 14s\n Count: 2\n Sample: 217026792222, 217100545188\n\nbatch_sync_contact:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 228 B\n TTL: 23h 59m 21s\n Count: 2\n Sample: 75447710238, 217099967820\n\nbatch_sync_contact:ids:518:all (Prolific - 544)\n Config ID: 518\n Type: set\n Memory: 228 B\n TTL: 23h 59m 24s\n Count: 2\n Sample: 759366910138, 762431619300\n\nbatch_sync_contact:ids:581:all (Penfold - 606)\n Config ID: 581\n Type: set\n Memory: 228 B\n TTL: 23h 58m 9s\n Count: 2\n Sample: 600134709478, 762410726634\n\nbatch_sync_deal:ids:300:all (Prowly - 318)\n Config ID: 300\n Type: set\n Memory: 228 B\n TTL: 23h 59m 45s\n Count: 2\n Sample: 59395888538, 59440247576\n\nbatch_sync_company:ids:104:all (Just Eat for Business - 111)\n Config ID: 104\n Type: set\n Memory: 164 B\n TTL: 23h 57m 40s\n Count: 1\n Sample: 7493005992\n\nbatch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 58m 18s\n Count: 1\n Sample: 54231895834\n\nbatch_sync_company:ids:530:all (InnoFund - 556)\n Config ID: 530\n Type: set\n Memory: 164 B\n TTL: 23h 58m 19s\n Count: 1\n Sample: 422347869429\n\nbatch_sync_company:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 19s\n Count: 1\n Sample: 4607664255\n\nbatch_sync_company:ids:802:all (Street Group - 853)\n Config ID: 802\n Type: set\n Memory: 164 B\n TTL: 23h 59m 47s\n Count: 1\n Sample: 4163875538\n\nbatch_sync_company:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 30s\n Count: 1\n Sample: 31116733769\n\nbatch_sync_company:ids:988:all (Teya - 1057)\n Config ID: 988\n Type: set\n Memory: 164 B\n TTL: 23h 59m 20s\n Count: 1\n Sample: 427145495759\n\nbatch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)\n Config ID: 428\n Type: set\n Memory: 164 B\n TTL: 23h 59m 4s\n Count: 1\n Sample: 217099551861\n\nbatch_sync_contact:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 57s\n Count: 1\n Sample: 762415153397\n\nbatch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)\n Config ID: 591\n Type: set\n Memory: 164 B\n TTL: 23h 58m 49s\n Count: 1\n Sample: 761339159786\n\nbatch_sync_contact:ids:617:all (PCS - 641)\n Config ID: 617\n Type: set\n Memory: 164 B\n TTL: 23h 58m 26s\n Count: 1\n Sample: 39027951\n\nbatch_sync_contact:ids:872:all (In Professional Development - 921)\n Config ID: 872\n Type: set\n Memory: 164 B\n TTL: 23h 58m 15s\n Count: 1\n Sample: 214557913897\n\nbatch_sync_contact:ids:882:all (GoGlobal - 933)\n Config ID: 882\n Type: set\n Memory: 164 B\n TTL: 23h 59m 59s\n Count: 1\n Sample: 217026731115\n\nbatch_sync_contact:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 217094005558\n\nbatch_sync_contact:ids:1037:all (Jibble - 1102)\n Config ID: 1037\n Type: set\n Memory: 164 B\n TTL: 23h 58m 34s\n Count: 1\n Sample: 217080600351\n\nbatch_sync_contact:ids:1060:all (Velatir - 1122)\n Config ID: 1060\n Type: set\n Memory: 164 B\n TTL: 23h 59m 56s\n Count: 1\n Sample: 217026172447\n\nbatch_sync_contact:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 34s\n Count: 1\n Sample: 235015524546\n\nbatch_sync_deal:ids:339:all (Rosterfy - 359)\n Config ID: 339\n Type: set\n Memory: 164 B\n TTL: 23h 59m 21s\n Count: 1\n Sample: 59419028745\n\nbatch_sync_deal:ids:533:all (Connectd - 559)\n Config ID: 533\n Type: set\n Memory: 164 B\n TTL: 23h 59m 26s\n Count: 1\n Sample: 499759701236\n\nbatch_sync_deal:ids:550:all (SeedLegals - 576)\n Config ID: 550\n Type: set\n Memory: 164 B\n TTL: 23h 59m 55s\n Count: 1\n Sample: 59436281355\n\nbatch_sync_deal:ids:900:all (NationBuilder - 575)\n Config ID: 900\n Type: set\n Memory: 164 B\n TTL: 23h 58m 5s\n Count: 1\n Sample: 59440406450\n\nbatch_sync_deal:ids:1062:all (Sigma Labs - 1124)\n Config ID: 1062\n Type: set\n Memory: 164 B\n TTL: 23h 59m 44s\n Count: 1\n Sample: 59421044353\n\nbatch_sync_deal:ids:1063:all (Base.com - 1125)\n Config ID: 1063\n Type: set\n Memory: 164 B\n TTL: 23h 59m 46s\n Count: 1\n Sample: 499545759937\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
4167874449453149318
|
3779793584113362896
|
idle
|
accessibility
|
NULL
|
🔔 association_change: 128 events, 0 properties
🏢 🔔 association_change: 128 events, 0 properties
🏢 Config 1044 (Sales Xceleration - 1109) - 160 webhooks
📦 contact: 160 webhooks
🔔 creation: 20 events, 0 properties
🔔 property_change: 119 events, 9 properties
🔔 association_change: 21 events, 0 properties
🏢 Config 900 (NationBuilder - 575) - 548 webhooks
📦 contact: 548 webhooks
🔔 property_change: 492 events, 9 properties
🔔 association_change: 33 events, 0 properties
🔔 creation: 23 events, 0 properties
🏢 Config 317 (PureGroup - 335) - 24 webhooks
📦 contact: 24 webhooks
🔔 property_change: 14 events, 7 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 480 (Flo Recruit - 506) - 225 webhooks
📦 contact: 225 webhooks
🔔 association_change: 29 events, 0 properties
🔔 creation: 17 events, 0 properties
🔔 property_change: 179 events, 8 properties
🏢 Config 48 (CleanCloud - 51) - 346 webhooks
📦 contact: 346 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 70 events, 0 properties
🔔 property_change: 246 events, 8 properties
🏢 Config 675 (Juriba - 695) - 854 webhooks
📦 contact: 854 webhooks
🔔 property_change: 237 events, 9 properties
🔔 association_change: 608 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 1021 (Gen3 Marketing - 1089) - 301 webhooks
📦 contact: 301 webhooks
🔔 property_change: 134 events, 9 properties
🔔 creation: 12 events, 0 properties
🔔 association_change: 155 events, 0 properties
🏢 Config 716 (Terpene Belt Farms - 737) - 106 webhooks
📦 contact: 106 webhooks
🔔 property_change: 72 events, 9 properties
🔔 association_change: 27 events, 0 properties
🔔 creation: 7 events, 0 properties
🏢 Config 921 (Matrak - 968) - 28 webhooks
📦 contact: 28 webhooks
🔔 property_change: 17 events, 7 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 8 events, 0 properties
🏢 Config 1054 (Temelio - 1118) - 9791 webhooks
📦 contact: 9791 webhooks
🔔 association_change: 7838 events, 0 properties
🔔 property_change: 1938 events, 7 properties
🔔 creation: 15 events, 0 properties
🏢 Config 1060 (Velatir - 1122) - 369 webhooks
📦 contact: 369 webhooks
🔔 property_change: 205 events, 8 properties
🔔 creation: 50 events, 0 properties
🔔 association_change: 114 events, 0 properties
🏢 Config 272 (Bonham & Brook - 290) - 846 webhooks
📦 contact: 846 webhooks
🔔 property_change: 580 events, 9 properties
🔔 association_change: 195 events, 0 properties
🔔 creation: 71 events, 0 properties
🏢 Config 989 (rtaoutdoor.com - 1058) - 2023 webhooks
📦 contact: 2023 webhooks
🔔 creation: 413 events, 0 properties
🔔 association_change: 235 events, 0 properties
🔔 property_change: 1375 events, 9 properties
🏢 Config 64 (SalaryFinance - 70) - 295 webhooks
📦 contact: 295 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 181 events, 7 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 1056 (Chromatic - 1119) - 3707 webhooks
📦 contact: 3707 webhooks
🔔 creation: 445 events, 0 properties
🔔 property_change: 2421 events, 10 properties
🔔 association_change: 841 events, 0 properties
🏢 Config 533 (Connectd - 559) - 5490 webhooks
📦 contact: 5490 webhooks
🔔 creation: 720 events, 0 properties
🔔 property_change: 3906 events, 8 properties
🔔 association_change: 864 events, 0 properties
🏢 Config 1006 (Dovetail Software - 1076) - 202 webhooks
📦 contact: 202 webhooks
🔔 property_change: 167 events, 9 properties
🔔 creation: 10 events, 0 properties
🔔 association_change: 25 events, 0 properties
🏢 Config 154 (Learnerbly - 172) - 6 webhooks
📦 contact: 6 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 4 events, 0 properties
🏢 Config 892 (Logiwa - 942) - 473 webhooks
📦 contact: 473 webhooks
🔔 creation: 55 events, 0 properties
🔔 property_change: 322 events, 8 properties
🔔 association_change: 96 events, 0 properties
🏢 Config 882 (GoGlobal - 933) - 6152 webhooks
📦 contact: 6152 webhooks
🔔 property_change: 4203 events, 9 properties
🔔 creation: 600 events, 0 properties
🔔 association_change: 1349 events, 0 properties
🏢 Config 797 (Kodex - 848) - 1171 webhooks
📦 contact: 1171 webhooks
🔔 property_change: 504 events, 9 properties
🔔 creation: 44 events, 0 properties
🔔 association_change: 623 events, 0 properties
🏢 Config 636 (ProofPilot - 657) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 44 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 142 events, 9 properties
🏢 Config 1063 (Base.com - 1125) - 13152 webhooks
📦 contact: 13152 webhooks
🔔 property_change: 8211 events, 9 properties
🔔 creation: 1559 events, 0 properties
🔔 association_change: 3382 events, 0 properties
🏢 Config 766 (Marsello - 781) - 563 webhooks
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
🏢 Config 803 (E3 - 854) - 553 webhooks
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 857 webhooks
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 10003 webhooks
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 740 webhooks
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 2499 webhooks
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
🏢 Config 880 (Immutable - 931) - 5587 webhooks
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
🏢 Config 877 (GroWrk Remote - 927) - 117 webhooks
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 494 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 465 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
🏢 Config 583 (One Core Media - 608) - 67 webhooks
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 155 webhooks
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 635 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
🏢 Config 270 (Heka Happy - 288) - 95 webhooks
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 502 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 663 webhooks
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 76739 webhooks
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 265 webhooks
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 192 webhooks
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 55 webhooks
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
🏢 Config 1049 (Classavo - 851) - 4 webhooks
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 290 (D1 Training - 308) - 406 webhooks
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 3686 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 493 webhooks
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 2640 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
🏢 Config 1053 (Sensi.AI - 1117) - 6217 webhooks
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 1739 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
🏢 Config 518 (Prolific - 544) - 8416 webhooks
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
🏢 Config 761 (Ressio Software - 770) - 2120 webhooks
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 805 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 491 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
🏢 Config 581 (Penfold - 606) - 852 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
🏢 Config 1015 (Travefy - 1049) - 1629 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
🏢 Config 413 (VCC - 347) - 15 webhooks
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 467 webhooks
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 133 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 26 webhooks
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 101 webhooks
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 193 webhooks
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
🏢 Config 300 (Prowly - 318) - 202 webhooks
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
🏢 Config 265 (Orbital - 283) - 2124 webhooks
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 938 webhooks
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 54 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 1335 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 28 webhooks
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 115 webhooks
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 2924 webhooks
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 69 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 1517 webhooks
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
🏢 Config 339 (Rosterfy - 359) - 818 webhooks
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 173 webhooks
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 116 webhooks
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
🏢 Config 738 (Locad - 756) - 204 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
🏢 Config 166 (CloverDX - 184) - 71 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
🏢 Config 605 (Encord - 630) - 127737 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 120 webhooks
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
🏢 Config 851 (Azion Technologies - 902) - 1326 webhooks
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 89 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
🏢 Config 1037 (Jibble - 1102) - 6719 webhooks
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 22 webhooks
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 5321 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 493 webhooks
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
🏢 Config 1064 (AdSearch - 1106) - 19 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 9 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 317 webhooks
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 310 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 425 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
🏢 Config 762 (Localize - 562) - 248 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
🏢 Config 1057 (FlourishDx - 1120) - 26 webhooks
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2311 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
🏢 Config 617 (PCS - 641) - 2447 webhooks
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2050 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
🏢 Config 734 (Codelink - 742) - 8 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🏢 Config 1011 (impactsuite.com - 1081) - 41 webhooks
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 6 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook redis -K ids -D
INFO Scanning Redis keys (type: ids).
Total keys found [PASSWORD_DOTS] 49
Total IDs across all keys [PASSWORD_DOTS] 18,389
📊 Memory Overview
Total Memory [PASSWORD_DOTS] 1.13 MB
ids keys [PASSWORD_DOTS] 1.13 MB
batch_sync_contact:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 466.97 KB
TTL: 20h 10m 27s
Count: 7470
Sample: 192113882790, 193310401030, 212054560910
batch_sync_company:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 262.66 KB
TTL: 22h 35m 26s
Count: 4201
Sample: 54058865198, 53534969742, 53356927055
batch_sync_company:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 179.29 KB
TTL: 23h 45m 18s
Count: 2867
Sample: 19906747085, 207999418554, 184286504170
batch_sync_contact:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 156.04 KB
TTL: 23h 59m 7s
Count: 2495
Sample: 43992819404, 757894771934, 253879170267
batch_sync_deal:ids:966:all (Crowdcube Ltd - 263)
Config ID: 966
Type: set
Memory: 65.1 KB
TTL: 23h 16m 54s
Count: 1040
Sample: 497670033640, 494362104006, 309324126435
batch_sync_deal:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 5.91 KB
TTL: 23h 59m 58s
Count: 93
Sample: 59246470017, 59428087704, 59420359534
batch_sync_contact:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 3.91 KB
TTL: 23h 59m 20s
Count: 61
Sample: 535146627303, 723055312109, 723017067763
batch_sync_deal:ids:1019:all (SimpleConsign - 1088)
Config ID: 1019
Type: set
Memory: 2.54 KB
TTL: 13h 31m 55s
Count: 39
Sample: 59375026541, 59228306303, 59371957877
batch_sync_contact:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 2.16 KB
TTL: 23h 59m 55s
Count: 33
Sample: 590873001, 216885003284, 661592951
batch_sync_deal:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 740 B
TTL: 23h 59m 39s
Count: 10
Sample: 498531887302, 499721100477, 498526511294
batch_sync_company:ids:834:all (AnyVan.com - 882)
Config ID: 834
Type: set
Memory: 612 B
TTL: 23h 59m 58s
Count: 8
Sample: 54244322639, 4175252906, 54191014784
batch_sync_deal:ids:272:all (Bonham & Brook - 290)
Config ID: 272
Type: set
Memory: 612 B
TTL: 23h 59m 45s
Count: 8
Sample: 35813274661, 33165333665, 34943430225
batch_sync_contact:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 484 B
TTL: 23h 59m 50s
Count: 6
Sample: 739727212737, 761097989318, 762396954872
batch_sync_company:ids:605:all (Encord - 630)
Config ID: 605
Type: set
Memory: 420 B
TTL: 23h 59m 13s
Count: 5
Sample: 427146854623, 207784633560, 427027236068
batch_sync_contact:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 420 B
TTL: 23h 59m 48s
Count: 5
Sample: 213251276943, 185428854155, 180796761920
batch_sync_contact:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 292 B
TTL: 23h 59m 43s
Count: 3
Sample: 30845302, 119476751, 217080439196
batch_sync_contact:ids:1056:all (Chromatic - 1119)
Config ID: 1056
Type: set
Memory: 292 B
TTL: 23h 59m 29s
Count: 3
Sample: 214594828075, 217098827959, 217099461219
batch_sync_deal:ids:265:all (Orbital - 283)
Config ID: 265
Type: set
Memory: 292 B
TTL: 23h 58m 8s
Count: 3
Sample: 53720624015, 54403717500, 55031434533
batch_sync_company:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 6860244995, 37052363791
batch_sync_company:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 228 B
TTL: 23h 59m 56s
Count: 2
Sample: 51647678593, 53794634876
batch_sync_company:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 228 B
TTL: 23h 59m 34s
Count: 2
Sample: 118441415884, 427146185975
batch_sync_contact:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 228 B
TTL: 23h 59m 14s
Count: 2
Sample: 217026792222, 217100545188
batch_sync_contact:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 228 B
TTL: 23h 59m 21s
Count: 2
Sample: 75447710238, 217099967820
batch_sync_contact:ids:518:all (Prolific - 544)
Config ID: 518
Type: set
Memory: 228 B
TTL: 23h 59m 24s
Count: 2
Sample: 759366910138, 762431619300
batch_sync_contact:ids:581:all (Penfold - 606)
Config ID: 581
Type: set
Memory: 228 B
TTL: 23h 58m 9s
Count: 2
Sample: 600134709478, 762410726634
batch_sync_deal:ids:300:all (Prowly - 318)
Config ID: 300
Type: set
Memory: 228 B
TTL: 23h 59m 45s
Count: 2
Sample: 59395888538, 59440247576
batch_sync_company:ids:104:all (Just Eat for Business - 111)
Config ID: 104
Type: set
Memory: 164 B
TTL: 23h 57m 40s
Count: 1
Sample: 7493005992
batch_sync_company:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 58m 18s
Count: 1
Sample: 54231895834
batch_sync_company:ids:530:all (InnoFund - 556)
Config ID: 530
Type: set
Memory: 164 B
TTL: 23h 58m 19s
Count: 1
Sample: 422347869429
batch_sync_company:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 19s
Count: 1
Sample: 4607664255
batch_sync_company:ids:802:all (Street Group - 853)
Config ID: 802
Type: set
Memory: 164 B
TTL: 23h 59m 47s
Count: 1
Sample: 4163875538
batch_sync_company:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 30s
Count: 1
Sample: 31116733769
batch_sync_company:ids:988:all (Teya - 1057)
Config ID: 988
Type: set
Memory: 164 B
TTL: 23h 59m 20s
Count: 1
Sample: 427145495759
batch_sync_contact:ids:428:all (Welcome to the Jungle UK - 461)
Config ID: 428
Type: set
Memory: 164 B
TTL: 23h 59m 4s
Count: 1
Sample: 217099551861
batch_sync_contact:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 57s
Count: 1
Sample: 762415153397
batch_sync_contact:ids:591:all (Data & AI Literacy Academy - 615)
Config ID: 591
Type: set
Memory: 164 B
TTL: 23h 58m 49s
Count: 1
Sample: 761339159786
batch_sync_contact:ids:617:all (PCS - 641)
Config ID: 617
Type: set
Memory: 164 B
TTL: 23h 58m 26s
Count: 1
Sample: 39027951
batch_sync_contact:ids:872:all (In Professional Development - 921)
Config ID: 872
Type: set
Memory: 164 B
TTL: 23h 58m 15s
Count: 1
Sample: 214557913897
batch_sync_contact:ids:882:all (GoGlobal - 933)
Config ID: 882
Type: set
Memory: 164 B
TTL: 23h 59m 59s
Count: 1
Sample: 217026731115
batch_sync_contact:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 217094005558
batch_sync_contact:ids:1037:all (Jibble - 1102)
Config ID: 1037
Type: set
Memory: 164 B
TTL: 23h 58m 34s
Count: 1
Sample: 217080600351
batch_sync_contact:ids:1060:all (Velatir - 1122)
Config ID: 1060
Type: set
Memory: 164 B
TTL: 23h 59m 56s
Count: 1
Sample: 217026172447
batch_sync_contact:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 34s
Count: 1
Sample: 235015524546
batch_sync_deal:ids:339:all (Rosterfy - 359)
Config ID: 339
Type: set
Memory: 164 B
TTL: 23h 59m 21s
Count: 1
Sample: 59419028745
batch_sync_deal:ids:533:all (Connectd - 559)
Config ID: 533
Type: set
Memory: 164 B
TTL: 23h 59m 26s
Count: 1
Sample: 499759701236
batch_sync_deal:ids:550:all (SeedLegals - 576)
Config ID: 550
Type: set
Memory: 164 B
TTL: 23h 59m 55s
Count: 1
Sample: 59436281355
batch_sync_deal:ids:900:all (NationBuilder - 575)
Config ID: 900
Type: set
Memory: 164 B
TTL: 23h 58m 5s
Count: 1
Sample: 59440406450
batch_sync_deal:ids:1062:all (Sigma Labs - 1124)
Config ID: 1062
Type: set
Memory: 164 B
TTL: 23h 59m 44s
Count: 1
Sample: 59421044353
batch_sync_deal:ids:1063:all (Base.com - 1125)
Config ID: 1063
Type: set
Memory: 164 B
TTL: 23h 59m 46s
Count: 1
Sample: 499545759937
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69505
|
1599
|
7
|
2026-04-22T08:13:49.029621+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845629029_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🔔 Event: association_change
Count: 107
🔔 Event: association_change
Count: 107
🔔 Event: property_change
Count: 352
Properties:
📝 firstname: 34 changes
📝 email: 35 changes
📝 lastname: 32 changes
📝 associatedcompanyid: 37 changes
📝 country: 29 changes
📝 jobtitle: 29 changes
📝 phone: 43 changes
📝 hubspot_owner_id: 108 changes
📝 mobilephone: 5 changes
🔔 Event: creation
Count: 32
📦 Object Type: deal
🔔 Event: property_change
Count: 225
Properties:
📝 hs_deal_stage_probability: 53 changes
📝 product: 7 changes
📝 closedate: 20 changes
📝 dealstage: 40 changes
📝 hs_manual_forecast_category: 31 changes
📝 amount: 26 changes
📝 deal_currency_code: 17 changes
📝 dealname: 5 changes
📝 segment: 16 changes
📝 hs_next_step: 6 changes
📝 deal_source: 4 changes
🔔 Event: creation
Count: 14
🔔 Event: association_change
Count: 41
📦 Object Type: company
🔔 Event: property_change
Count: 34
Properties:
📝 hubspot_owner_id: 18 changes
📝 domain: 9 changes
📝 name: 7 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 130
INFO Looking for metrics: Config 581 (Penfold - 606), Date 2026-04-16.
📊 Webhook Metrics for Config 581 (Penfold - 606)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 161
🔔 Event: creation
Count: 117
🔔 Event: property_change
Count: 574
Properties:
📝 email: 117 changes
📝 lastname: 69 changes
📝 firstname: 74 changes
📝 associatedcompanyid: 74 changes
📝 hubspot_owner_id: 156 changes
📝 jobtitle: 28 changes
📝 country: 22 changes
📝 phone: 18 changes
📝 mobilephone: 16 changes
📦 Object Type: company
🔔 Event: creation
Count: 21
🔔 Event: property_change
Count: 78
Properties:
📝 domain: 22 changes
📝 name: 23 changes
📝 hubspot_owner_id: 27 changes
📝 phone: 3 changes
📝 industry: 1 changes
📝 country: 2 changes
🔔 Event: association_change
Count: 167
📦 Object Type: deal
🔔 Event: association_change
Count: 18
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 49
Properties:
📝 dealstage: 13 changes
📝 hs_deal_stage_probability: 18 changes
📝 hs_manual_forecast_category: 10 changes
📝 hubspot_owner_id: 2 changes
📝 hs_next_step: 1 changes
📝 amount: 2 changes
📝 closedate: 3 changes
INFO Looking for metrics: Config 1015 (Travefy - 1049), Date 2026-04-16.
📊 Webhook Metrics for Config 1015 (Travefy - 1049)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 1064
Properties:
📝 firstname: 194 changes
📝 phone: 141 changes
📝 email: 156 changes
📝 lastname: 171 changes
📝 associatedcompanyid: 156 changes
📝 hubspot_owner_id: 228 changes
📝 jobtitle: 11 changes
📝 mobilephone: 5 changes
📝 country: 2 changes
🔔 Event: creation
Count: 154
🔔 Event: association_change
Count: 411
📦 Object Type: deal
🔔 Event: property_change
Count: 1072
Properties:
📝 deal_currency_code: 98 changes
📝 amount: 108 changes
📝 hs_deal_stage_probability: 262 changes
📝 hs_manual_forecast_category: 217 changes
📝 hubspot_owner_id: 107 changes
📝 closedate: 109 changes
📝 dealstage: 163 changes
📝 seats_interest: 2 changes
📝 pipeline: 5 changes
📝 competitor_deal: 1 changes
🔔 Event: creation
Count: 99
🔔 Event: association_change
Count: 297
📦 Object Type: company
🔔 Event: creation
Count: 151
🔔 Event: association_change
Count: 510
🔔 Event: property_change
Count: 263
Properties:
📝 name: 171 changes
📝 hubspot_owner_id: 92 changes
INFO Looking for metrics: Config 413 (VCC - 347), Date 2026-04-16.
📊 Webhook Metrics for Config 413 (VCC - 347)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: property_change
Count: 10
Properties:
📝 closedate: 3 changes
📝 amount: 1 changes
📝 dealstage: 2 changes
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
🔔 Event: association_change
Count: 1
📦 Object Type: contact
🔔 Event: property_change
Count: 12
Properties:
📝 email: 1 changes
📝 hubspot_owner_id: 2 changes
📝 associatedcompanyid: 1 changes
📝 phone: 1 changes
📝 jobtitle: 3 changes
📝 country: 1 changes
📝 lastname: 1 changes
📝 mobilephone: 1 changes
📝 firstname: 1 changes
🔔 Event: association_change
Count: 2
🔔 Event: creation
Count: 1
📦 Object Type: company
🔔 Event: association_change
Count: 3
🔔 Event: property_change
Count: 18
Properties:
📝 name: 9 changes
📝 domain: 9 changes
🔔 Event: creation
Count: 9
INFO Looking for metrics: Config 591 (Data & AI Literacy Academy - 615), Date 2026-04-16.
📊 Webhook Metrics for Config 591 (Data & AI Literacy Academy - 615)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 30
Properties:
📝 hubspot_owner_id: 16 changes
📝 name: 7 changes
📝 domain: 7 changes
🔔 Event: association_change
Count: 122
🔔 Event: creation
Count: 8
📦 Object Type: deal
🔔 Event: property_change
Count: 34
Properties:
📝 amount: 1 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 10 changes
📝 dealstage: 6 changes
📝 hs_deal_stage_probability: 6 changes
📝 hs_manual_forecast_category: 9 changes
📦 Object Type: contact
🔔 Event: creation
Count: 39
🔔 Event: association_change
Count: 122
🔔 Event: property_change
Count: 306
Properties:
📝 jobtitle: 29 changes
📝 hubspot_owner_id: 70 changes
📝 firstname: 36 changes
📝 lastname: 36 changes
📝 associatedcompanyid: 42 changes
📝 mobilephone: 27 changes
📝 email: 39 changes
📝 phone: 27 changes
INFO Looking for metrics: Config 1031 (CUCollaborate - 1096), Date 2026-04-16.
📊 Webhook Metrics for Config 1031 (CUCollaborate - 1096)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 9
🔔 Event: property_change
Count: 100
Properties:
📝 country: 12 changes
📝 jobtitle: 16 changes
📝 phone: 10 changes
📝 email: 14 changes
📝 hubspot_owner_id: 15 changes
📝 lastname: 8 changes
📝 firstname: 9 changes
📝 associatedcompanyid: 9 changes
📝 mobilephone: 7 changes
🔔 Event: association_change
Count: 24
📦 Object Type: deal
🔔 Event: creation
Count: 5
🔔 Event: association_change
Count: 16
🔔 Event: property_change
Count: 47
Properties:
📝 dealstage: 7 changes
📝 hs_deal_stage_probability: 12 changes
📝 closedate: 9 changes
📝 hs_manual_forecast_category: 10 changes
📝 dealname: 3 changes
📝 deal_currency_code: 1 changes
📝 amount: 2 changes
📝 hs_next_step: 2 changes
📝 hubspot_owner_id: 1 changes
📦 Object Type: company
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 12
Properties:
📝 country: 2 changes
📝 domain: 2 changes
📝 industry: 2 changes
📝 phone: 2 changes
📝 name: 2 changes
📝 hubspot_owner_id: 2 changes
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 1025 (Predictiv - 1092), Date 2026-04-16.
📊 Webhook Metrics for Config 1025 (Predictiv - 1092)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 5
Properties:
📝 domain: 2 changes
📝 name: 2 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: association_change
Count: 6
🔔 Event: creation
Count: 2
📦 Object Type: contact
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 17
Properties:
📝 email: 3 changes
📝 phone: 2 changes
📝 associatedcompanyid: 3 changes
📝 hubspot_owner_id: 2 changes
📝 country: 2 changes
📝 firstname: 2 changes
📝 lastname: 2 changes
📝 jobtitle: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 1051 (IndySoft - 1115), Date 2026-04-16.
📊 Webhook Metrics for Config 1051 (IndySoft - 1115)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 29
🔔 Event: property_change
Count: 11
Properties:
📝 domain: 4 changes
📝 name: 2 changes
📝 phone: 1 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 hubspot_owner_id: 2 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 17
Properties:
📝 dealstage: 3 changes
📝 hs_deal_stage_probability: 4 changes
📝 hs_manual_forecast_category: 3 changes
📝 deal_currency_code: 1 changes
📝 amount: 4 changes
📝 closedate: 2 changes
🔔 Event: association_change
Count: 3
🔔 Event: creation
Count: 1
📦 Object Type: contact
🔔 Event: property_change
Count: 64
Properties:
📝 associatedcompanyid: 10 changes
📝 email: 7 changes
📝 lastname: 11 changes
📝 firstname: 11 changes
📝 mobilephone: 1 changes
📝 phone: 9 changes
📝 jobtitle: 7 changes
📝 hubspot_owner_id: 8 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 966 (Crowdcube Ltd - 263), Date 2026-04-16.
📊 Webhook Metrics for Config 966 (Crowdcube Ltd - 263)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 204
Properties:
📝 amount: 6 changes
📝 amount_in_home_currency: 6 changes
📝 dealstage: 46 changes
📝 hs_deal_stage_probability: 53 changes
📝 hs_manual_forecast_category: 52 changes
📝 closedate: 40 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: association_change
Count: 39
📦 Object Type: contact
🔔 Event: property_change
Count: 126
Properties:
📝 phone: 5 changes
📝 firstname: 19 changes
📝 lastname: 17 changes
📝 hubspot_owner_id: 27 changes
📝 email: 20 changes
📝 associatedcompanyid: 16 changes
📝 country: 8 changes
📝 jobtitle: 13 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 22
🔔 Event: association_change
Count: 45
📦 Object Type: company
🔔 Event: property_change
Count: 61
Properties:
📝 domain: 13 changes
📝 name: 12 changes
📝 industry: 8 changes
📝 phone: 6 changes
📝 hubspot_owner_id: 16 changes
📝 country: 6 changes
🔔 Event: association_change
Count: 58
🔔 Event: creation
Count: 13
INFO Looking for metrics: Config 300 (Prowly - 318), Date 2026-04-16.
📊 Webhook Metrics for Config 300 (Prowly - 318)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 66
🔔 Event: property_change
Count: 26
Properties:
📝 hubspot_owner_id: 3 changes
📝 domain: 10 changes
📝 name: 10 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 phone: 1 changes
📦 Object Type: contact
🔔 Event: creation
Count: 33
🔔 Event: association_change
Count: 55
🔔 Event: property_change
Count: 114
Properties:
📝 firstname: 23 changes
📝 email: 33 changes
📝 lastname: 9 changes
📝 country: 9 changes
📝 associatedcompanyid: 21 changes
📝 hubspot_owner_id: 15 changes
📝 phone: 2 changes
📝 jobtitle: 2 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 80
Properties:
📝 pipeline: 2 changes
📝 dealstage: 10 changes
📝 amount: 20 changes
📝 dealname: 2 changes
📝 closedate: 15 changes
📝 hs_deal_stage_probability: 16 changes
📝 deal_currency_code: 8 changes
📝 dealtype: 5 changes
📝 hubspot_owner_id: 2 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 37
INFO Looking for metrics: Config 265 (Orbital - 283), Date 2026-04-16.
📊 Webhook Metrics for Config 265 (Orbital - 283)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: property_change
Count: 207
Properties:
📝 deal_risk: 62 changes
📝 deal_probability: 29 changes
📝 competitors_summary: 42 changes
📝 closure_forecast: 33 changes
📝 competitors: 12 changes
📝 hs_deal_stage_probability: 5 changes
📝 dealstage: 7 changes
📝 deal_risk_dropdown: 6 changes
📝 amount: 10 changes
📝 hs_next_step: 1 changes
🔔 Event: association_change
Count: 45
📦 Object Type: company
🔔 Event: property_change
Count: 48
Properties:
📝 industry: 21 changes
📝 domain: 11 changes
📝 name: 9 changes
📝 hubspot_owner_id: 3 changes
📝 country: 2 changes
📝 phone: 2 changes
🔔 Event: creation
Count: 11
🔔 Event: association_change
Count: 862
📦 Object Type: contact
🔔 Event: property_change
Count: 1151
Properties:
📝 hubspot_owner_id: 136 changes
📝 phone: 112 changes
📝 country: 131 changes
📝 lastname: 131 changes
📝 email: 118 changes
📝 associatedcompanyid: 261 changes
📝 firstname: 131 changes
📝 jobtitle: 125 changes
📝 mobilephone: 6 changes
🔔 Event: creation
Count: 134
🔔 Event: association_change
Count: 839
INFO Looking for metrics: Config 104 (Just Eat for Business - 111), Date 2026-04-16.
📊 Webhook Metrics for Config 104 (Just Eat for Business - 111)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 35
Properties:
📝 name: 11 changes
📝 hubspot_owner_id: 18 changes
📝 domain: 6 changes
🔔 Event: association_change
Count: 98
🔔 Event: creation
Count: 8
📦 Object Type: deal
🔔 Event: creation
Count: 11
🔔 Event: association_change
Count: 27
🔔 Event: property_change
Count: 21
Properties:
📝 hs_deal_stage_probability: 12 changes
📝 hubspot_owner_id: 4 changes
📝 dealstage: 1 changes
📝 hs_manual_forecast_category: 2 changes
📝 closedate: 2 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 797
Properties:
📝 firstname: 147 changes
📝 email: 172 changes
📝 phone: 238 changes
📝 lastname: 148 changes
📝 associatedcompanyid: 38 changes
📝 hubspot_owner_id: 42 changes
📝 jobtitle: 9 changes
📝 mobilephone: 2 changes
📝 country: 1 changes
🔔 Event: creation
Count: 52
🔔 Event: association_change
Count: 89
INFO Looking for metrics: Config 1062 (Sigma Labs - 1124), Date 2026-04-16.
📊 Webhook Metrics for Config 1062 (Sigma Labs - 1124)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 38
Properties:
📝 mobilephone: 1 changes
📝 firstname: 4 changes
📝 jobtitle: 3 changes
📝 lastname: 4 changes
📝 email: 10 changes
📝 hubspot_owner_id: 8 changes
📝 associatedcompanyid: 5 changes
📝 phone: 1 changes
📝 country: 2 changes
🔔 Event: association_change
Count: 10
🔔 Event: creation
Count: 6
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 5
Properties:
📝 country: 1 changes
📝 name: 1 changes
📝 phone: 1 changes
📝 industry: 1 changes
📝 domain: 1 changes
🔔 Event: association_change
Count: 10
INFO Looking for metrics: Config 949 (Truvi - 1023), Date 2026-04-16.
📊 Webhook Metrics for Config 949 (Truvi - 1023)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 967
🔔 Event: property_change
Count: 287
Properties:
📝 lastname: 47 changes
📝 email: 75 changes
📝 firstname: 55 changes
📝 hubspot_owner_id: 57 changes
📝 associatedcompanyid: 27 changes
📝 phone: 12 changes
📝 jobtitle: 8 changes
📝 country: 5 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 81
📦 Object Type: deal
🔔 Event: creation
Count: 18
🔔 Event: association_change
Count: 1278
🔔 Event: property_change
Count: 526
Properties:
📝 hs_deal_stage_probability: 262 changes
📝 dealstage: 247 changes
📝 closedate: 11 changes
📝 dealname: 2 changes
📝 deal_currency_code: 2 changes
📝 createdate: 1 changes
📝 pipeline: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 451
🔔 Event: property_change
Count: 68
Properties:
📝 name: 34 changes
📝 domain: 28 changes
📝 hubspot_owner_id: 6 changes
🔔 Event: creation
Count: 37
INFO Looking for metrics: Config 945 (Shinydocs - 1019), Date 2026-04-16.
📊 Webhook Metrics for Config 945 (Shinydocs - 1019)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: association_change
Count: 7
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 23
Properties:
📝 dealstage: 8 changes
📝 hs_deal_stage_probability: 9 changes
📝 pipeline: 1 changes
📝 closedate: 1 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
📝 amount_in_home_currency: 2 changes
📦 Object Type: contact
🔔 Event: association_change
Count: 11
🔔 Event: property_change
Count: 14
Properties:
📝 email: 3 changes
📝 hubspot_owner_id: 6 changes
📝 associatedcompanyid: 3 changes
📝 lastname: 1 changes
📝 firstname: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 959 (Voyager - 1031), Date 2026-04-16.
📊 Webhook Metrics for Config 959 (Voyager - 1031)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 8
Properties:
📝 domain: 5 changes
📝 hubspot_owner_id: 1 changes
📝 name: 1 changes
📝 industry: 1 changes
🔔 Event: association_change
Count: 22
📦 Object Type: deal
🔔 Event: property_change
Count: 1
Properties:
📝 amount: 1 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 82
Properties:
📝 hubspot_owner_id: 7 changes
📝 email: 13 changes
📝 jobtitle: 7 changes
📝 firstname: 16 changes
📝 lastname: 17 changes
📝 country: 3 changes
📝 associatedcompanyid: 11 changes
📝 mobilephone: 1 changes
📝 phone: 7 changes
🔔 Event: association_change
Count: 22
🔔 Event: creation
Count: 11
INFO Looking for metrics: Config 1045 (Cove - 1110), Date 2026-04-16.
📊 Webhook Metrics for Config 1045 (Cove - 1110)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 92
🔔 Event: association_change
Count: 676
🔔 Event: property_change
Count: 349
Properties:
📝 domain: 92 changes
📝 country: 76 changes
📝 hubspot_owner_id: 95 changes
📝 name: 86 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 2007
Properties:
📝 lastname: 242 changes
📝 email: 223 changes
📝 firstname: 244 changes
📝 associatedcompanyid: 286 changes
📝 phone: 235 changes
📝 hubspot_owner_id: 358 changes
📝 jobtitle: 236 changes
📝 mobilephone: 183 changes
🔔 Event: creation
Count: 244
🔔 Event: association_change
Count: 673
📦 Object Type: deal
🔔 Event: property_change
Count: 49
Properties:
📝 forecast_probability: 12 changes
📝 probability_justification: 12 changes
📝 metrics: 4 changes
📝 paper_process: 2 changes
📝 competition: 2 changes
📝 amount: 3 changes
📝 hs_deal_stage_probability: 3 changes
📝 deal_currency_code: 1 changes
📝 economic_buyer: 2 changes
📝 decision_criteria: 2 changes
📝 decision_process: 2 changes
📝 identify_pain: 2 changes
📝 champion: 2 changes
🔔 Event: association_change
Count: 9
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 1065 (Integrum ESG - 1126), Date 2026-04-16.
📊 Webhook Metrics for Config 1065 (Integrum ESG - 1126)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 48
Properties:
📝 jobtitle: 13 changes
📝 lastname: 4 changes
📝 firstname: 4 changes
📝 hubspot_owner_id: 16 changes
📝 phone: 5 changes
📝 email: 3 changes
📝 associatedcompanyid: 3 changes
🔔 Event: association_change
Count: 18
🔔 Event: creation
Count: 3
📦 Object Type: company
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 5
Properties:
📝 closedate: 2 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 2 changes
🔔 Event: association_change
Count: 14
INFO Looking for metrics: Config 680 (The Family Office Company - 700), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🔔\u0000 Event: association_change\n Count: 107\n\n 🔔\u0000 Event: property_change\n Count: 352\n Properties:\n 📝\u0000 firstname: 34 changes\n 📝\u0000 email: 35 changes\n 📝\u0000 lastname: 32 changes\n 📝\u0000 associatedcompanyid: 37 changes\n 📝\u0000 country: 29 changes\n 📝\u0000 jobtitle: 29 changes\n 📝\u0000 phone: 43 changes\n 📝\u0000 hubspot_owner_id: 108 changes\n 📝\u0000 mobilephone: 5 changes\n\n 🔔\u0000 Event: creation\n Count: 32\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 225\n Properties:\n 📝\u0000 hs_deal_stage_probability: 53 changes\n 📝\u0000 product: 7 changes\n 📝\u0000 closedate: 20 changes\n 📝\u0000 dealstage: 40 changes\n 📝\u0000 hs_manual_forecast_category: 31 changes\n 📝\u0000 amount: 26 changes\n 📝\u0000 deal_currency_code: 17 changes\n 📝\u0000 dealname: 5 changes\n 📝\u0000 segment: 16 changes\n 📝\u0000 hs_next_step: 6 changes\n 📝\u0000 deal_source: 4 changes\n\n 🔔\u0000 Event: creation\n Count: 14\n\n 🔔\u0000 Event: association_change\n Count: 41\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 34\n Properties:\n 📝\u0000 hubspot_owner_id: 18 changes\n 📝\u0000 domain: 9 changes\n 📝\u0000 name: 7 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 130\n\n\n INFO Looking for metrics: Config 581 (Penfold - 606), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 581 (Penfold - 606)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 161\n\n 🔔\u0000 Event: creation\n Count: 117\n\n 🔔\u0000 Event: property_change\n Count: 574\n Properties:\n 📝\u0000 email: 117 changes\n 📝\u0000 lastname: 69 changes\n 📝\u0000 firstname: 74 changes\n 📝\u0000 associatedcompanyid: 74 changes\n 📝\u0000 hubspot_owner_id: 156 changes\n 📝\u0000 jobtitle: 28 changes\n 📝\u0000 country: 22 changes\n 📝\u0000 phone: 18 changes\n 📝\u0000 mobilephone: 16 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 21\n\n 🔔\u0000 Event: property_change\n Count: 78\n Properties:\n 📝\u0000 domain: 22 changes\n 📝\u0000 name: 23 changes\n 📝\u0000 hubspot_owner_id: 27 changes\n 📝\u0000 phone: 3 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 167\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 18\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 dealstage: 13 changes\n 📝\u0000 hs_deal_stage_probability: 18 changes\n 📝\u0000 hs_manual_forecast_category: 10 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 hs_next_step: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 3 changes\n\n\n INFO Looking for metrics: Config 1015 (Travefy - 1049), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1015 (Travefy - 1049)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 1064\n Properties:\n 📝\u0000 firstname: 194 changes\n 📝\u0000 phone: 141 changes\n 📝\u0000 email: 156 changes\n 📝\u0000 lastname: 171 changes\n 📝\u0000 associatedcompanyid: 156 changes\n 📝\u0000 hubspot_owner_id: 228 changes\n 📝\u0000 jobtitle: 11 changes\n 📝\u0000 mobilephone: 5 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 154\n\n 🔔\u0000 Event: association_change\n Count: 411\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1072\n Properties:\n 📝\u0000 deal_currency_code: 98 changes\n 📝\u0000 amount: 108 changes\n 📝\u0000 hs_deal_stage_probability: 262 changes\n 📝\u0000 hs_manual_forecast_category: 217 changes\n 📝\u0000 hubspot_owner_id: 107 changes\n 📝\u0000 closedate: 109 changes\n 📝\u0000 dealstage: 163 changes\n 📝\u0000 seats_interest: 2 changes\n 📝\u0000 pipeline: 5 changes\n 📝\u0000 competitor_deal: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 99\n\n 🔔\u0000 Event: association_change\n Count: 297\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 151\n\n 🔔\u0000 Event: association_change\n Count: 510\n\n 🔔\u0000 Event: property_change\n Count: 263\n Properties:\n 📝\u0000 name: 171 changes\n 📝\u0000 hubspot_owner_id: 92 changes\n\n\n INFO Looking for metrics: Config 413 (VCC - 347), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 413 (VCC - 347)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 10\n Properties:\n 📝\u0000 closedate: 3 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 dealstage: 2 changes\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 1\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 12\n Properties:\n 📝\u0000 email: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 associatedcompanyid: 1 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 2\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 18\n Properties:\n 📝\u0000 name: 9 changes\n 📝\u0000 domain: 9 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n\n INFO Looking for metrics: Config 591 (Data & AI Literacy Academy - 615), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 591 (Data & AI Literacy Academy - 615)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 30\n Properties:\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 name: 7 changes\n 📝\u0000 domain: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 122\n\n 🔔\u0000 Event: creation\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 34\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 10 changes\n 📝\u0000 dealstage: 6 changes\n 📝\u0000 hs_deal_stage_probability: 6 changes\n 📝\u0000 hs_manual_forecast_category: 9 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 39\n\n 🔔\u0000 Event: association_change\n Count: 122\n\n 🔔\u0000 Event: property_change\n Count: 306\n Properties:\n 📝\u0000 jobtitle: 29 changes\n 📝\u0000 hubspot_owner_id: 70 changes\n 📝\u0000 firstname: 36 changes\n 📝\u0000 lastname: 36 changes\n 📝\u0000 associatedcompanyid: 42 changes\n 📝\u0000 mobilephone: 27 changes\n 📝\u0000 email: 39 changes\n 📝\u0000 phone: 27 changes\n\n\n INFO Looking for metrics: Config 1031 (CUCollaborate - 1096), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1031 (CUCollaborate - 1096)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: property_change\n Count: 100\n Properties:\n 📝\u0000 country: 12 changes\n 📝\u0000 jobtitle: 16 changes\n 📝\u0000 phone: 10 changes\n 📝\u0000 email: 14 changes\n 📝\u0000 hubspot_owner_id: 15 changes\n 📝\u0000 lastname: 8 changes\n 📝\u0000 firstname: 9 changes\n 📝\u0000 associatedcompanyid: 9 changes\n 📝\u0000 mobilephone: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 24\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: association_change\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 47\n Properties:\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 hs_deal_stage_probability: 12 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 hs_manual_forecast_category: 10 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 12\n Properties:\n 📝\u0000 country: 2 changes\n 📝\u0000 domain: 2 changes\n 📝\u0000 industry: 2 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 1025 (Predictiv - 1092), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1025 (Predictiv - 1092)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 domain: 2 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: creation\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 email: 3 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 associatedcompanyid: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 firstname: 2 changes\n 📝\u0000 lastname: 2 changes\n 📝\u0000 jobtitle: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 1051 (IndySoft - 1115), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1051 (IndySoft - 1115)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 29\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 domain: 4 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 hs_deal_stage_probability: 4 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 4 changes\n 📝\u0000 closedate: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 64\n Properties:\n 📝\u0000 associatedcompanyid: 10 changes\n 📝\u0000 email: 7 changes\n 📝\u0000 lastname: 11 changes\n 📝\u0000 firstname: 11 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 phone: 9 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 966 (Crowdcube Ltd - 263), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 966 (Crowdcube Ltd - 263)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 204\n Properties:\n 📝\u0000 amount: 6 changes\n 📝\u0000 amount_in_home_currency: 6 changes\n 📝\u0000 dealstage: 46 changes\n 📝\u0000 hs_deal_stage_probability: 53 changes\n 📝\u0000 hs_manual_forecast_category: 52 changes\n 📝\u0000 closedate: 40 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 39\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 126\n Properties:\n 📝\u0000 phone: 5 changes\n 📝\u0000 firstname: 19 changes\n 📝\u0000 lastname: 17 changes\n 📝\u0000 hubspot_owner_id: 27 changes\n 📝\u0000 email: 20 changes\n 📝\u0000 associatedcompanyid: 16 changes\n 📝\u0000 country: 8 changes\n 📝\u0000 jobtitle: 13 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 22\n\n 🔔\u0000 Event: association_change\n Count: 45\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 61\n Properties:\n 📝\u0000 domain: 13 changes\n 📝\u0000 name: 12 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 phone: 6 changes\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 country: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 58\n\n 🔔\u0000 Event: creation\n Count: 13\n\n\n INFO Looking for metrics: Config 300 (Prowly - 318), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 300 (Prowly - 318)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 66\n\n 🔔\u0000 Event: property_change\n Count: 26\n Properties:\n 📝\u0000 hubspot_owner_id: 3 changes\n 📝\u0000 domain: 10 changes\n 📝\u0000 name: 10 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 phone: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 33\n\n 🔔\u0000 Event: association_change\n Count: 55\n\n 🔔\u0000 Event: property_change\n Count: 114\n Properties:\n 📝\u0000 firstname: 23 changes\n 📝\u0000 email: 33 changes\n 📝\u0000 lastname: 9 changes\n 📝\u0000 country: 9 changes\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 hubspot_owner_id: 15 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 jobtitle: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 80\n Properties:\n 📝\u0000 pipeline: 2 changes\n 📝\u0000 dealstage: 10 changes\n 📝\u0000 amount: 20 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 closedate: 15 changes\n 📝\u0000 hs_deal_stage_probability: 16 changes\n 📝\u0000 deal_currency_code: 8 changes\n 📝\u0000 dealtype: 5 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 37\n\n\n INFO Looking for metrics: Config 265 (Orbital - 283), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 265 (Orbital - 283)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 207\n Properties:\n 📝\u0000 deal_risk: 62 changes\n 📝\u0000 deal_probability: 29 changes\n 📝\u0000 competitors_summary: 42 changes\n 📝\u0000 closure_forecast: 33 changes\n 📝\u0000 competitors: 12 changes\n 📝\u0000 hs_deal_stage_probability: 5 changes\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 deal_risk_dropdown: 6 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 hs_next_step: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 45\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 48\n Properties:\n 📝\u0000 industry: 21 changes\n 📝\u0000 domain: 11 changes\n 📝\u0000 name: 9 changes\n 📝\u0000 hubspot_owner_id: 3 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 phone: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 11\n\n 🔔\u0000 Event: association_change\n Count: 862\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 1151\n Properties:\n 📝\u0000 hubspot_owner_id: 136 changes\n 📝\u0000 phone: 112 changes\n 📝\u0000 country: 131 changes\n 📝\u0000 lastname: 131 changes\n 📝\u0000 email: 118 changes\n 📝\u0000 associatedcompanyid: 261 changes\n 📝\u0000 firstname: 131 changes\n 📝\u0000 jobtitle: 125 changes\n 📝\u0000 mobilephone: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 134\n\n 🔔\u0000 Event: association_change\n Count: 839\n\n\n INFO Looking for metrics: Config 104 (Just Eat for Business - 111), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 104 (Just Eat for Business - 111)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 35\n Properties:\n 📝\u0000 name: 11 changes\n 📝\u0000 hubspot_owner_id: 18 changes\n 📝\u0000 domain: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 98\n\n 🔔\u0000 Event: creation\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 11\n\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: property_change\n Count: 21\n Properties:\n 📝\u0000 hs_deal_stage_probability: 12 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 closedate: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 797\n Properties:\n 📝\u0000 firstname: 147 changes\n 📝\u0000 email: 172 changes\n 📝\u0000 phone: 238 changes\n 📝\u0000 lastname: 148 changes\n 📝\u0000 associatedcompanyid: 38 changes\n 📝\u0000 hubspot_owner_id: 42 changes\n 📝\u0000 jobtitle: 9 changes\n 📝\u0000 mobilephone: 2 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 52\n\n 🔔\u0000 Event: association_change\n Count: 89\n\n\n INFO Looking for metrics: Config 1062 (Sigma Labs - 1124), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1062 (Sigma Labs - 1124)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 38\n Properties:\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 firstname: 4 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 lastname: 4 changes\n 📝\u0000 email: 10 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 associatedcompanyid: 5 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 country: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 domain: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n\n INFO Looking for metrics: Config 949 (Truvi - 1023), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 949 (Truvi - 1023)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 967\n\n 🔔\u0000 Event: property_change\n Count: 287\n Properties:\n 📝\u0000 lastname: 47 changes\n 📝\u0000 email: 75 changes\n 📝\u0000 firstname: 55 changes\n 📝\u0000 hubspot_owner_id: 57 changes\n 📝\u0000 associatedcompanyid: 27 changes\n 📝\u0000 phone: 12 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 country: 5 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 81\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: association_change\n Count: 1278\n\n 🔔\u0000 Event: property_change\n Count: 526\n Properties:\n 📝\u0000 hs_deal_stage_probability: 262 changes\n 📝\u0000 dealstage: 247 changes\n 📝\u0000 closedate: 11 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 deal_currency_code: 2 changes\n 📝\u0000 createdate: 1 changes\n 📝\u0000 pipeline: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 451\n\n 🔔\u0000 Event: property_change\n Count: 68\n Properties:\n 📝\u0000 name: 34 changes\n 📝\u0000 domain: 28 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 37\n\n\n INFO Looking for metrics: Config 945 (Shinydocs - 1019), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 945 (Shinydocs - 1019)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 7\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 23\n Properties:\n 📝\u0000 dealstage: 8 changes\n 📝\u0000 hs_deal_stage_probability: 9 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 amount_in_home_currency: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 11\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 email: 3 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 associatedcompanyid: 3 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 959 (Voyager - 1031), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 959 (Voyager - 1031)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 domain: 5 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 industry: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 22\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1\n Properties:\n 📝\u0000 amount: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 82\n Properties:\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 email: 13 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 firstname: 16 changes\n 📝\u0000 lastname: 17 changes\n 📝\u0000 country: 3 changes\n 📝\u0000 associatedcompanyid: 11 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 phone: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 22\n\n 🔔\u0000 Event: creation\n Count: 11\n\n\n INFO Looking for metrics: Config 1045 (Cove - 1110), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1045 (Cove - 1110)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 92\n\n 🔔\u0000 Event: association_change\n Count: 676\n\n 🔔\u0000 Event: property_change\n Count: 349\n Properties:\n 📝\u0000 domain: 92 changes\n 📝\u0000 country: 76 changes\n 📝\u0000 hubspot_owner_id: 95 changes\n 📝\u0000 name: 86 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2007\n Properties:\n 📝\u0000 lastname: 242 changes\n 📝\u0000 email: 223 changes\n 📝\u0000 firstname: 244 changes\n 📝\u0000 associatedcompanyid: 286 changes\n 📝\u0000 phone: 235 changes\n 📝\u0000 hubspot_owner_id: 358 changes\n 📝\u0000 jobtitle: 236 changes\n 📝\u0000 mobilephone: 183 changes\n\n 🔔\u0000 Event: creation\n Count: 244\n\n 🔔\u0000 Event: association_change\n Count: 673\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 forecast_probability: 12 changes\n 📝\u0000 probability_justification: 12 changes\n 📝\u0000 metrics: 4 changes\n 📝\u0000 paper_process: 2 changes\n 📝\u0000 competition: 2 changes\n 📝\u0000 amount: 3 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 economic_buyer: 2 changes\n 📝\u0000 decision_criteria: 2 changes\n 📝\u0000 decision_process: 2 changes\n 📝\u0000 identify_pain: 2 changes\n 📝\u0000 champion: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 1065 (Integrum ESG - 1126), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1065 (Integrum ESG - 1126)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 48\n Properties:\n 📝\u0000 jobtitle: 13 changes\n 📝\u0000 lastname: 4 changes\n 📝\u0000 firstname: 4 changes\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 email: 3 changes\n 📝\u0000 associatedcompanyid: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 18\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 closedate: 2 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 14\n\n\n INFO Looking for metrics: Config 680 (The Family Office Company - 700), Date 2026-04-16.","depth":4,"value":"🔔\u0000 Event: association_change\n Count: 107\n\n 🔔\u0000 Event: property_change\n Count: 352\n Properties:\n 📝\u0000 firstname: 34 changes\n 📝\u0000 email: 35 changes\n 📝\u0000 lastname: 32 changes\n 📝\u0000 associatedcompanyid: 37 changes\n 📝\u0000 country: 29 changes\n 📝\u0000 jobtitle: 29 changes\n 📝\u0000 phone: 43 changes\n 📝\u0000 hubspot_owner_id: 108 changes\n 📝\u0000 mobilephone: 5 changes\n\n 🔔\u0000 Event: creation\n Count: 32\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 225\n Properties:\n 📝\u0000 hs_deal_stage_probability: 53 changes\n 📝\u0000 product: 7 changes\n 📝\u0000 closedate: 20 changes\n 📝\u0000 dealstage: 40 changes\n 📝\u0000 hs_manual_forecast_category: 31 changes\n 📝\u0000 amount: 26 changes\n 📝\u0000 deal_currency_code: 17 changes\n 📝\u0000 dealname: 5 changes\n 📝\u0000 segment: 16 changes\n 📝\u0000 hs_next_step: 6 changes\n 📝\u0000 deal_source: 4 changes\n\n 🔔\u0000 Event: creation\n Count: 14\n\n 🔔\u0000 Event: association_change\n Count: 41\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 34\n Properties:\n 📝\u0000 hubspot_owner_id: 18 changes\n 📝\u0000 domain: 9 changes\n 📝\u0000 name: 7 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 130\n\n\n INFO Looking for metrics: Config 581 (Penfold - 606), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 581 (Penfold - 606)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 161\n\n 🔔\u0000 Event: creation\n Count: 117\n\n 🔔\u0000 Event: property_change\n Count: 574\n Properties:\n 📝\u0000 email: 117 changes\n 📝\u0000 lastname: 69 changes\n 📝\u0000 firstname: 74 changes\n 📝\u0000 associatedcompanyid: 74 changes\n 📝\u0000 hubspot_owner_id: 156 changes\n 📝\u0000 jobtitle: 28 changes\n 📝\u0000 country: 22 changes\n 📝\u0000 phone: 18 changes\n 📝\u0000 mobilephone: 16 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 21\n\n 🔔\u0000 Event: property_change\n Count: 78\n Properties:\n 📝\u0000 domain: 22 changes\n 📝\u0000 name: 23 changes\n 📝\u0000 hubspot_owner_id: 27 changes\n 📝\u0000 phone: 3 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 167\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 18\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 dealstage: 13 changes\n 📝\u0000 hs_deal_stage_probability: 18 changes\n 📝\u0000 hs_manual_forecast_category: 10 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 hs_next_step: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 3 changes\n\n\n INFO Looking for metrics: Config 1015 (Travefy - 1049), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1015 (Travefy - 1049)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 1064\n Properties:\n 📝\u0000 firstname: 194 changes\n 📝\u0000 phone: 141 changes\n 📝\u0000 email: 156 changes\n 📝\u0000 lastname: 171 changes\n 📝\u0000 associatedcompanyid: 156 changes\n 📝\u0000 hubspot_owner_id: 228 changes\n 📝\u0000 jobtitle: 11 changes\n 📝\u0000 mobilephone: 5 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 154\n\n 🔔\u0000 Event: association_change\n Count: 411\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1072\n Properties:\n 📝\u0000 deal_currency_code: 98 changes\n 📝\u0000 amount: 108 changes\n 📝\u0000 hs_deal_stage_probability: 262 changes\n 📝\u0000 hs_manual_forecast_category: 217 changes\n 📝\u0000 hubspot_owner_id: 107 changes\n 📝\u0000 closedate: 109 changes\n 📝\u0000 dealstage: 163 changes\n 📝\u0000 seats_interest: 2 changes\n 📝\u0000 pipeline: 5 changes\n 📝\u0000 competitor_deal: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 99\n\n 🔔\u0000 Event: association_change\n Count: 297\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 151\n\n 🔔\u0000 Event: association_change\n Count: 510\n\n 🔔\u0000 Event: property_change\n Count: 263\n Properties:\n 📝\u0000 name: 171 changes\n 📝\u0000 hubspot_owner_id: 92 changes\n\n\n INFO Looking for metrics: Config 413 (VCC - 347), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 413 (VCC - 347)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 10\n Properties:\n 📝\u0000 closedate: 3 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 dealstage: 2 changes\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 1\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 12\n Properties:\n 📝\u0000 email: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 associatedcompanyid: 1 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 2\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 18\n Properties:\n 📝\u0000 name: 9 changes\n 📝\u0000 domain: 9 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n\n INFO Looking for metrics: Config 591 (Data & AI Literacy Academy - 615), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 591 (Data & AI Literacy Academy - 615)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 30\n Properties:\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 name: 7 changes\n 📝\u0000 domain: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 122\n\n 🔔\u0000 Event: creation\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 34\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 10 changes\n 📝\u0000 dealstage: 6 changes\n 📝\u0000 hs_deal_stage_probability: 6 changes\n 📝\u0000 hs_manual_forecast_category: 9 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 39\n\n 🔔\u0000 Event: association_change\n Count: 122\n\n 🔔\u0000 Event: property_change\n Count: 306\n Properties:\n 📝\u0000 jobtitle: 29 changes\n 📝\u0000 hubspot_owner_id: 70 changes\n 📝\u0000 firstname: 36 changes\n 📝\u0000 lastname: 36 changes\n 📝\u0000 associatedcompanyid: 42 changes\n 📝\u0000 mobilephone: 27 changes\n 📝\u0000 email: 39 changes\n 📝\u0000 phone: 27 changes\n\n\n INFO Looking for metrics: Config 1031 (CUCollaborate - 1096), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1031 (CUCollaborate - 1096)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: property_change\n Count: 100\n Properties:\n 📝\u0000 country: 12 changes\n 📝\u0000 jobtitle: 16 changes\n 📝\u0000 phone: 10 changes\n 📝\u0000 email: 14 changes\n 📝\u0000 hubspot_owner_id: 15 changes\n 📝\u0000 lastname: 8 changes\n 📝\u0000 firstname: 9 changes\n 📝\u0000 associatedcompanyid: 9 changes\n 📝\u0000 mobilephone: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 24\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: association_change\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 47\n Properties:\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 hs_deal_stage_probability: 12 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 hs_manual_forecast_category: 10 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 12\n Properties:\n 📝\u0000 country: 2 changes\n 📝\u0000 domain: 2 changes\n 📝\u0000 industry: 2 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 1025 (Predictiv - 1092), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1025 (Predictiv - 1092)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 domain: 2 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: creation\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 email: 3 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 associatedcompanyid: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 firstname: 2 changes\n 📝\u0000 lastname: 2 changes\n 📝\u0000 jobtitle: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 1051 (IndySoft - 1115), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1051 (IndySoft - 1115)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 29\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 domain: 4 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 hs_deal_stage_probability: 4 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 4 changes\n 📝\u0000 closedate: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 64\n Properties:\n 📝\u0000 associatedcompanyid: 10 changes\n 📝\u0000 email: 7 changes\n 📝\u0000 lastname: 11 changes\n 📝\u0000 firstname: 11 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 phone: 9 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 966 (Crowdcube Ltd - 263), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 966 (Crowdcube Ltd - 263)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 204\n Properties:\n 📝\u0000 amount: 6 changes\n 📝\u0000 amount_in_home_currency: 6 changes\n 📝\u0000 dealstage: 46 changes\n 📝\u0000 hs_deal_stage_probability: 53 changes\n 📝\u0000 hs_manual_forecast_category: 52 changes\n 📝\u0000 closedate: 40 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 39\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 126\n Properties:\n 📝\u0000 phone: 5 changes\n 📝\u0000 firstname: 19 changes\n 📝\u0000 lastname: 17 changes\n 📝\u0000 hubspot_owner_id: 27 changes\n 📝\u0000 email: 20 changes\n 📝\u0000 associatedcompanyid: 16 changes\n 📝\u0000 country: 8 changes\n 📝\u0000 jobtitle: 13 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 22\n\n 🔔\u0000 Event: association_change\n Count: 45\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 61\n Properties:\n 📝\u0000 domain: 13 changes\n 📝\u0000 name: 12 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 phone: 6 changes\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 country: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 58\n\n 🔔\u0000 Event: creation\n Count: 13\n\n\n INFO Looking for metrics: Config 300 (Prowly - 318), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 300 (Prowly - 318)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 66\n\n 🔔\u0000 Event: property_change\n Count: 26\n Properties:\n 📝\u0000 hubspot_owner_id: 3 changes\n 📝\u0000 domain: 10 changes\n 📝\u0000 name: 10 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 phone: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 33\n\n 🔔\u0000 Event: association_change\n Count: 55\n\n 🔔\u0000 Event: property_change\n Count: 114\n Properties:\n 📝\u0000 firstname: 23 changes\n 📝\u0000 email: 33 changes\n 📝\u0000 lastname: 9 changes\n 📝\u0000 country: 9 changes\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 hubspot_owner_id: 15 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 jobtitle: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 80\n Properties:\n 📝\u0000 pipeline: 2 changes\n 📝\u0000 dealstage: 10 changes\n 📝\u0000 amount: 20 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 closedate: 15 changes\n 📝\u0000 hs_deal_stage_probability: 16 changes\n 📝\u0000 deal_currency_code: 8 changes\n 📝\u0000 dealtype: 5 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 37\n\n\n INFO Looking for metrics: Config 265 (Orbital - 283), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 265 (Orbital - 283)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 207\n Properties:\n 📝\u0000 deal_risk: 62 changes\n 📝\u0000 deal_probability: 29 changes\n 📝\u0000 competitors_summary: 42 changes\n 📝\u0000 closure_forecast: 33 changes\n 📝\u0000 competitors: 12 changes\n 📝\u0000 hs_deal_stage_probability: 5 changes\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 deal_risk_dropdown: 6 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 hs_next_step: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 45\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 48\n Properties:\n 📝\u0000 industry: 21 changes\n 📝\u0000 domain: 11 changes\n 📝\u0000 name: 9 changes\n 📝\u0000 hubspot_owner_id: 3 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 phone: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 11\n\n 🔔\u0000 Event: association_change\n Count: 862\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 1151\n Properties:\n 📝\u0000 hubspot_owner_id: 136 changes\n 📝\u0000 phone: 112 changes\n 📝\u0000 country: 131 changes\n 📝\u0000 lastname: 131 changes\n 📝\u0000 email: 118 changes\n 📝\u0000 associatedcompanyid: 261 changes\n 📝\u0000 firstname: 131 changes\n 📝\u0000 jobtitle: 125 changes\n 📝\u0000 mobilephone: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 134\n\n 🔔\u0000 Event: association_change\n Count: 839\n\n\n INFO Looking for metrics: Config 104 (Just Eat for Business - 111), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 104 (Just Eat for Business - 111)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 35\n Properties:\n 📝\u0000 name: 11 changes\n 📝\u0000 hubspot_owner_id: 18 changes\n 📝\u0000 domain: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 98\n\n 🔔\u0000 Event: creation\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 11\n\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: property_change\n Count: 21\n Properties:\n 📝\u0000 hs_deal_stage_probability: 12 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 closedate: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 797\n Properties:\n 📝\u0000 firstname: 147 changes\n 📝\u0000 email: 172 changes\n 📝\u0000 phone: 238 changes\n 📝\u0000 lastname: 148 changes\n 📝\u0000 associatedcompanyid: 38 changes\n 📝\u0000 hubspot_owner_id: 42 changes\n 📝\u0000 jobtitle: 9 changes\n 📝\u0000 mobilephone: 2 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 52\n\n 🔔\u0000 Event: association_change\n Count: 89\n\n\n INFO Looking for metrics: Config 1062 (Sigma Labs - 1124), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1062 (Sigma Labs - 1124)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 38\n Properties:\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 firstname: 4 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 lastname: 4 changes\n 📝\u0000 email: 10 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 associatedcompanyid: 5 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 country: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 domain: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n\n INFO Looking for metrics: Config 949 (Truvi - 1023), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 949 (Truvi - 1023)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 967\n\n 🔔\u0000 Event: property_change\n Count: 287\n Properties:\n 📝\u0000 lastname: 47 changes\n 📝\u0000 email: 75 changes\n 📝\u0000 firstname: 55 changes\n 📝\u0000 hubspot_owner_id: 57 changes\n 📝\u0000 associatedcompanyid: 27 changes\n 📝\u0000 phone: 12 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 country: 5 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 81\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: association_change\n Count: 1278\n\n 🔔\u0000 Event: property_change\n Count: 526\n Properties:\n 📝\u0000 hs_deal_stage_probability: 262 changes\n 📝\u0000 dealstage: 247 changes\n 📝\u0000 closedate: 11 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 deal_currency_code: 2 changes\n 📝\u0000 createdate: 1 changes\n 📝\u0000 pipeline: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 451\n\n 🔔\u0000 Event: property_change\n Count: 68\n Properties:\n 📝\u0000 name: 34 changes\n 📝\u0000 domain: 28 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 37\n\n\n INFO Looking for metrics: Config 945 (Shinydocs - 1019), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 945 (Shinydocs - 1019)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 7\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 23\n Properties:\n 📝\u0000 dealstage: 8 changes\n 📝\u0000 hs_deal_stage_probability: 9 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 amount_in_home_currency: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 11\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 email: 3 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 associatedcompanyid: 3 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 959 (Voyager - 1031), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 959 (Voyager - 1031)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 domain: 5 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 industry: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 22\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1\n Properties:\n 📝\u0000 amount: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 82\n Properties:\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 email: 13 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 firstname: 16 changes\n 📝\u0000 lastname: 17 changes\n 📝\u0000 country: 3 changes\n 📝\u0000 associatedcompanyid: 11 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 phone: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 22\n\n 🔔\u0000 Event: creation\n Count: 11\n\n\n INFO Looking for metrics: Config 1045 (Cove - 1110), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1045 (Cove - 1110)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 92\n\n 🔔\u0000 Event: association_change\n Count: 676\n\n 🔔\u0000 Event: property_change\n Count: 349\n Properties:\n 📝\u0000 domain: 92 changes\n 📝\u0000 country: 76 changes\n 📝\u0000 hubspot_owner_id: 95 changes\n 📝\u0000 name: 86 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2007\n Properties:\n 📝\u0000 lastname: 242 changes\n 📝\u0000 email: 223 changes\n 📝\u0000 firstname: 244 changes\n 📝\u0000 associatedcompanyid: 286 changes\n 📝\u0000 phone: 235 changes\n 📝\u0000 hubspot_owner_id: 358 changes\n 📝\u0000 jobtitle: 236 changes\n 📝\u0000 mobilephone: 183 changes\n\n 🔔\u0000 Event: creation\n Count: 244\n\n 🔔\u0000 Event: association_change\n Count: 673\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 forecast_probability: 12 changes\n 📝\u0000 probability_justification: 12 changes\n 📝\u0000 metrics: 4 changes\n 📝\u0000 paper_process: 2 changes\n 📝\u0000 competition: 2 changes\n 📝\u0000 amount: 3 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 economic_buyer: 2 changes\n 📝\u0000 decision_criteria: 2 changes\n 📝\u0000 decision_process: 2 changes\n 📝\u0000 identify_pain: 2 changes\n 📝\u0000 champion: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 1065 (Integrum ESG - 1126), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1065 (Integrum ESG - 1126)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 48\n Properties:\n 📝\u0000 jobtitle: 13 changes\n 📝\u0000 lastname: 4 changes\n 📝\u0000 firstname: 4 changes\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 email: 3 changes\n 📝\u0000 associatedcompanyid: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 18\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 closedate: 2 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 14\n\n\n INFO Looking for metrics: Config 680 (The Family Office Company - 700), Date 2026-04-16.","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
-7185865916780885241
|
7543195323846757237
|
idle
|
accessibility
|
NULL
|
🔔 Event: association_change
Count: 107
🔔 Event: association_change
Count: 107
🔔 Event: property_change
Count: 352
Properties:
📝 firstname: 34 changes
📝 email: 35 changes
📝 lastname: 32 changes
📝 associatedcompanyid: 37 changes
📝 country: 29 changes
📝 jobtitle: 29 changes
📝 phone: 43 changes
📝 hubspot_owner_id: 108 changes
📝 mobilephone: 5 changes
🔔 Event: creation
Count: 32
📦 Object Type: deal
🔔 Event: property_change
Count: 225
Properties:
📝 hs_deal_stage_probability: 53 changes
📝 product: 7 changes
📝 closedate: 20 changes
📝 dealstage: 40 changes
📝 hs_manual_forecast_category: 31 changes
📝 amount: 26 changes
📝 deal_currency_code: 17 changes
📝 dealname: 5 changes
📝 segment: 16 changes
📝 hs_next_step: 6 changes
📝 deal_source: 4 changes
🔔 Event: creation
Count: 14
🔔 Event: association_change
Count: 41
📦 Object Type: company
🔔 Event: property_change
Count: 34
Properties:
📝 hubspot_owner_id: 18 changes
📝 domain: 9 changes
📝 name: 7 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 130
INFO Looking for metrics: Config 581 (Penfold - 606), Date 2026-04-16.
📊 Webhook Metrics for Config 581 (Penfold - 606)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 161
🔔 Event: creation
Count: 117
🔔 Event: property_change
Count: 574
Properties:
📝 email: 117 changes
📝 lastname: 69 changes
📝 firstname: 74 changes
📝 associatedcompanyid: 74 changes
📝 hubspot_owner_id: 156 changes
📝 jobtitle: 28 changes
📝 country: 22 changes
📝 phone: 18 changes
📝 mobilephone: 16 changes
📦 Object Type: company
🔔 Event: creation
Count: 21
🔔 Event: property_change
Count: 78
Properties:
📝 domain: 22 changes
📝 name: 23 changes
📝 hubspot_owner_id: 27 changes
📝 phone: 3 changes
📝 industry: 1 changes
📝 country: 2 changes
🔔 Event: association_change
Count: 167
📦 Object Type: deal
🔔 Event: association_change
Count: 18
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 49
Properties:
📝 dealstage: 13 changes
📝 hs_deal_stage_probability: 18 changes
📝 hs_manual_forecast_category: 10 changes
📝 hubspot_owner_id: 2 changes
📝 hs_next_step: 1 changes
📝 amount: 2 changes
📝 closedate: 3 changes
INFO Looking for metrics: Config 1015 (Travefy - 1049), Date 2026-04-16.
📊 Webhook Metrics for Config 1015 (Travefy - 1049)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 1064
Properties:
📝 firstname: 194 changes
📝 phone: 141 changes
📝 email: 156 changes
📝 lastname: 171 changes
📝 associatedcompanyid: 156 changes
📝 hubspot_owner_id: 228 changes
📝 jobtitle: 11 changes
📝 mobilephone: 5 changes
📝 country: 2 changes
🔔 Event: creation
Count: 154
🔔 Event: association_change
Count: 411
📦 Object Type: deal
🔔 Event: property_change
Count: 1072
Properties:
📝 deal_currency_code: 98 changes
📝 amount: 108 changes
📝 hs_deal_stage_probability: 262 changes
📝 hs_manual_forecast_category: 217 changes
📝 hubspot_owner_id: 107 changes
📝 closedate: 109 changes
📝 dealstage: 163 changes
📝 seats_interest: 2 changes
📝 pipeline: 5 changes
📝 competitor_deal: 1 changes
🔔 Event: creation
Count: 99
🔔 Event: association_change
Count: 297
📦 Object Type: company
🔔 Event: creation
Count: 151
🔔 Event: association_change
Count: 510
🔔 Event: property_change
Count: 263
Properties:
📝 name: 171 changes
📝 hubspot_owner_id: 92 changes
INFO Looking for metrics: Config 413 (VCC - 347), Date 2026-04-16.
📊 Webhook Metrics for Config 413 (VCC - 347)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: property_change
Count: 10
Properties:
📝 closedate: 3 changes
📝 amount: 1 changes
📝 dealstage: 2 changes
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
🔔 Event: association_change
Count: 1
📦 Object Type: contact
🔔 Event: property_change
Count: 12
Properties:
📝 email: 1 changes
📝 hubspot_owner_id: 2 changes
📝 associatedcompanyid: 1 changes
📝 phone: 1 changes
📝 jobtitle: 3 changes
📝 country: 1 changes
📝 lastname: 1 changes
📝 mobilephone: 1 changes
📝 firstname: 1 changes
🔔 Event: association_change
Count: 2
🔔 Event: creation
Count: 1
📦 Object Type: company
🔔 Event: association_change
Count: 3
🔔 Event: property_change
Count: 18
Properties:
📝 name: 9 changes
📝 domain: 9 changes
🔔 Event: creation
Count: 9
INFO Looking for metrics: Config 591 (Data & AI Literacy Academy - 615), Date 2026-04-16.
📊 Webhook Metrics for Config 591 (Data & AI Literacy Academy - 615)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 30
Properties:
📝 hubspot_owner_id: 16 changes
📝 name: 7 changes
📝 domain: 7 changes
🔔 Event: association_change
Count: 122
🔔 Event: creation
Count: 8
📦 Object Type: deal
🔔 Event: property_change
Count: 34
Properties:
📝 amount: 1 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 10 changes
📝 dealstage: 6 changes
📝 hs_deal_stage_probability: 6 changes
📝 hs_manual_forecast_category: 9 changes
📦 Object Type: contact
🔔 Event: creation
Count: 39
🔔 Event: association_change
Count: 122
🔔 Event: property_change
Count: 306
Properties:
📝 jobtitle: 29 changes
📝 hubspot_owner_id: 70 changes
📝 firstname: 36 changes
📝 lastname: 36 changes
📝 associatedcompanyid: 42 changes
📝 mobilephone: 27 changes
📝 email: 39 changes
📝 phone: 27 changes
INFO Looking for metrics: Config 1031 (CUCollaborate - 1096), Date 2026-04-16.
📊 Webhook Metrics for Config 1031 (CUCollaborate - 1096)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 9
🔔 Event: property_change
Count: 100
Properties:
📝 country: 12 changes
📝 jobtitle: 16 changes
📝 phone: 10 changes
📝 email: 14 changes
📝 hubspot_owner_id: 15 changes
📝 lastname: 8 changes
📝 firstname: 9 changes
📝 associatedcompanyid: 9 changes
📝 mobilephone: 7 changes
🔔 Event: association_change
Count: 24
📦 Object Type: deal
🔔 Event: creation
Count: 5
🔔 Event: association_change
Count: 16
🔔 Event: property_change
Count: 47
Properties:
📝 dealstage: 7 changes
📝 hs_deal_stage_probability: 12 changes
📝 closedate: 9 changes
📝 hs_manual_forecast_category: 10 changes
📝 dealname: 3 changes
📝 deal_currency_code: 1 changes
📝 amount: 2 changes
📝 hs_next_step: 2 changes
📝 hubspot_owner_id: 1 changes
📦 Object Type: company
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 12
Properties:
📝 country: 2 changes
📝 domain: 2 changes
📝 industry: 2 changes
📝 phone: 2 changes
📝 name: 2 changes
📝 hubspot_owner_id: 2 changes
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 1025 (Predictiv - 1092), Date 2026-04-16.
📊 Webhook Metrics for Config 1025 (Predictiv - 1092)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 5
Properties:
📝 domain: 2 changes
📝 name: 2 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: association_change
Count: 6
🔔 Event: creation
Count: 2
📦 Object Type: contact
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 17
Properties:
📝 email: 3 changes
📝 phone: 2 changes
📝 associatedcompanyid: 3 changes
📝 hubspot_owner_id: 2 changes
📝 country: 2 changes
📝 firstname: 2 changes
📝 lastname: 2 changes
📝 jobtitle: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 1051 (IndySoft - 1115), Date 2026-04-16.
📊 Webhook Metrics for Config 1051 (IndySoft - 1115)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 29
🔔 Event: property_change
Count: 11
Properties:
📝 domain: 4 changes
📝 name: 2 changes
📝 phone: 1 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 hubspot_owner_id: 2 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 17
Properties:
📝 dealstage: 3 changes
📝 hs_deal_stage_probability: 4 changes
📝 hs_manual_forecast_category: 3 changes
📝 deal_currency_code: 1 changes
📝 amount: 4 changes
📝 closedate: 2 changes
🔔 Event: association_change
Count: 3
🔔 Event: creation
Count: 1
📦 Object Type: contact
🔔 Event: property_change
Count: 64
Properties:
📝 associatedcompanyid: 10 changes
📝 email: 7 changes
📝 lastname: 11 changes
📝 firstname: 11 changes
📝 mobilephone: 1 changes
📝 phone: 9 changes
📝 jobtitle: 7 changes
📝 hubspot_owner_id: 8 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 966 (Crowdcube Ltd - 263), Date 2026-04-16.
📊 Webhook Metrics for Config 966 (Crowdcube Ltd - 263)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 204
Properties:
📝 amount: 6 changes
📝 amount_in_home_currency: 6 changes
📝 dealstage: 46 changes
📝 hs_deal_stage_probability: 53 changes
📝 hs_manual_forecast_category: 52 changes
📝 closedate: 40 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: association_change
Count: 39
📦 Object Type: contact
🔔 Event: property_change
Count: 126
Properties:
📝 phone: 5 changes
📝 firstname: 19 changes
📝 lastname: 17 changes
📝 hubspot_owner_id: 27 changes
📝 email: 20 changes
📝 associatedcompanyid: 16 changes
📝 country: 8 changes
📝 jobtitle: 13 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 22
🔔 Event: association_change
Count: 45
📦 Object Type: company
🔔 Event: property_change
Count: 61
Properties:
📝 domain: 13 changes
📝 name: 12 changes
📝 industry: 8 changes
📝 phone: 6 changes
📝 hubspot_owner_id: 16 changes
📝 country: 6 changes
🔔 Event: association_change
Count: 58
🔔 Event: creation
Count: 13
INFO Looking for metrics: Config 300 (Prowly - 318), Date 2026-04-16.
📊 Webhook Metrics for Config 300 (Prowly - 318)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 66
🔔 Event: property_change
Count: 26
Properties:
📝 hubspot_owner_id: 3 changes
📝 domain: 10 changes
📝 name: 10 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 phone: 1 changes
📦 Object Type: contact
🔔 Event: creation
Count: 33
🔔 Event: association_change
Count: 55
🔔 Event: property_change
Count: 114
Properties:
📝 firstname: 23 changes
📝 email: 33 changes
📝 lastname: 9 changes
📝 country: 9 changes
📝 associatedcompanyid: 21 changes
📝 hubspot_owner_id: 15 changes
📝 phone: 2 changes
📝 jobtitle: 2 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 80
Properties:
📝 pipeline: 2 changes
📝 dealstage: 10 changes
📝 amount: 20 changes
📝 dealname: 2 changes
📝 closedate: 15 changes
📝 hs_deal_stage_probability: 16 changes
📝 deal_currency_code: 8 changes
📝 dealtype: 5 changes
📝 hubspot_owner_id: 2 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 37
INFO Looking for metrics: Config 265 (Orbital - 283), Date 2026-04-16.
📊 Webhook Metrics for Config 265 (Orbital - 283)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: property_change
Count: 207
Properties:
📝 deal_risk: 62 changes
📝 deal_probability: 29 changes
📝 competitors_summary: 42 changes
📝 closure_forecast: 33 changes
📝 competitors: 12 changes
📝 hs_deal_stage_probability: 5 changes
📝 dealstage: 7 changes
📝 deal_risk_dropdown: 6 changes
📝 amount: 10 changes
📝 hs_next_step: 1 changes
🔔 Event: association_change
Count: 45
📦 Object Type: company
🔔 Event: property_change
Count: 48
Properties:
📝 industry: 21 changes
📝 domain: 11 changes
📝 name: 9 changes
📝 hubspot_owner_id: 3 changes
📝 country: 2 changes
📝 phone: 2 changes
🔔 Event: creation
Count: 11
🔔 Event: association_change
Count: 862
📦 Object Type: contact
🔔 Event: property_change
Count: 1151
Properties:
📝 hubspot_owner_id: 136 changes
📝 phone: 112 changes
📝 country: 131 changes
📝 lastname: 131 changes
📝 email: 118 changes
📝 associatedcompanyid: 261 changes
📝 firstname: 131 changes
📝 jobtitle: 125 changes
📝 mobilephone: 6 changes
🔔 Event: creation
Count: 134
🔔 Event: association_change
Count: 839
INFO Looking for metrics: Config 104 (Just Eat for Business - 111), Date 2026-04-16.
📊 Webhook Metrics for Config 104 (Just Eat for Business - 111)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 35
Properties:
📝 name: 11 changes
📝 hubspot_owner_id: 18 changes
📝 domain: 6 changes
🔔 Event: association_change
Count: 98
🔔 Event: creation
Count: 8
📦 Object Type: deal
🔔 Event: creation
Count: 11
🔔 Event: association_change
Count: 27
🔔 Event: property_change
Count: 21
Properties:
📝 hs_deal_stage_probability: 12 changes
📝 hubspot_owner_id: 4 changes
📝 dealstage: 1 changes
📝 hs_manual_forecast_category: 2 changes
📝 closedate: 2 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 797
Properties:
📝 firstname: 147 changes
📝 email: 172 changes
📝 phone: 238 changes
📝 lastname: 148 changes
📝 associatedcompanyid: 38 changes
📝 hubspot_owner_id: 42 changes
📝 jobtitle: 9 changes
📝 mobilephone: 2 changes
📝 country: 1 changes
🔔 Event: creation
Count: 52
🔔 Event: association_change
Count: 89
INFO Looking for metrics: Config 1062 (Sigma Labs - 1124), Date 2026-04-16.
📊 Webhook Metrics for Config 1062 (Sigma Labs - 1124)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 38
Properties:
📝 mobilephone: 1 changes
📝 firstname: 4 changes
📝 jobtitle: 3 changes
📝 lastname: 4 changes
📝 email: 10 changes
📝 hubspot_owner_id: 8 changes
📝 associatedcompanyid: 5 changes
📝 phone: 1 changes
📝 country: 2 changes
🔔 Event: association_change
Count: 10
🔔 Event: creation
Count: 6
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 5
Properties:
📝 country: 1 changes
📝 name: 1 changes
📝 phone: 1 changes
📝 industry: 1 changes
📝 domain: 1 changes
🔔 Event: association_change
Count: 10
INFO Looking for metrics: Config 949 (Truvi - 1023), Date 2026-04-16.
📊 Webhook Metrics for Config 949 (Truvi - 1023)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 967
🔔 Event: property_change
Count: 287
Properties:
📝 lastname: 47 changes
📝 email: 75 changes
📝 firstname: 55 changes
📝 hubspot_owner_id: 57 changes
📝 associatedcompanyid: 27 changes
📝 phone: 12 changes
📝 jobtitle: 8 changes
📝 country: 5 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 81
📦 Object Type: deal
🔔 Event: creation
Count: 18
🔔 Event: association_change
Count: 1278
🔔 Event: property_change
Count: 526
Properties:
📝 hs_deal_stage_probability: 262 changes
📝 dealstage: 247 changes
📝 closedate: 11 changes
📝 dealname: 2 changes
📝 deal_currency_code: 2 changes
📝 createdate: 1 changes
📝 pipeline: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 451
🔔 Event: property_change
Count: 68
Properties:
📝 name: 34 changes
📝 domain: 28 changes
📝 hubspot_owner_id: 6 changes
🔔 Event: creation
Count: 37
INFO Looking for metrics: Config 945 (Shinydocs - 1019), Date 2026-04-16.
📊 Webhook Metrics for Config 945 (Shinydocs - 1019)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: association_change
Count: 7
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 23
Properties:
📝 dealstage: 8 changes
📝 hs_deal_stage_probability: 9 changes
📝 pipeline: 1 changes
📝 closedate: 1 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
📝 amount_in_home_currency: 2 changes
📦 Object Type: contact
🔔 Event: association_change
Count: 11
🔔 Event: property_change
Count: 14
Properties:
📝 email: 3 changes
📝 hubspot_owner_id: 6 changes
📝 associatedcompanyid: 3 changes
📝 lastname: 1 changes
📝 firstname: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 959 (Voyager - 1031), Date 2026-04-16.
📊 Webhook Metrics for Config 959 (Voyager - 1031)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 8
Properties:
📝 domain: 5 changes
📝 hubspot_owner_id: 1 changes
📝 name: 1 changes
📝 industry: 1 changes
🔔 Event: association_change
Count: 22
📦 Object Type: deal
🔔 Event: property_change
Count: 1
Properties:
📝 amount: 1 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 82
Properties:
📝 hubspot_owner_id: 7 changes
📝 email: 13 changes
📝 jobtitle: 7 changes
📝 firstname: 16 changes
📝 lastname: 17 changes
📝 country: 3 changes
📝 associatedcompanyid: 11 changes
📝 mobilephone: 1 changes
📝 phone: 7 changes
🔔 Event: association_change
Count: 22
🔔 Event: creation
Count: 11
INFO Looking for metrics: Config 1045 (Cove - 1110), Date 2026-04-16.
📊 Webhook Metrics for Config 1045 (Cove - 1110)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 92
🔔 Event: association_change
Count: 676
🔔 Event: property_change
Count: 349
Properties:
📝 domain: 92 changes
📝 country: 76 changes
📝 hubspot_owner_id: 95 changes
📝 name: 86 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 2007
Properties:
📝 lastname: 242 changes
📝 email: 223 changes
📝 firstname: 244 changes
📝 associatedcompanyid: 286 changes
📝 phone: 235 changes
📝 hubspot_owner_id: 358 changes
📝 jobtitle: 236 changes
📝 mobilephone: 183 changes
🔔 Event: creation
Count: 244
🔔 Event: association_change
Count: 673
📦 Object Type: deal
🔔 Event: property_change
Count: 49
Properties:
📝 forecast_probability: 12 changes
📝 probability_justification: 12 changes
📝 metrics: 4 changes
📝 paper_process: 2 changes
📝 competition: 2 changes
📝 amount: 3 changes
📝 hs_deal_stage_probability: 3 changes
📝 deal_currency_code: 1 changes
📝 economic_buyer: 2 changes
📝 decision_criteria: 2 changes
📝 decision_process: 2 changes
📝 identify_pain: 2 changes
📝 champion: 2 changes
🔔 Event: association_change
Count: 9
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 1065 (Integrum ESG - 1126), Date 2026-04-16.
📊 Webhook Metrics for Config 1065 (Integrum ESG - 1126)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 48
Properties:
📝 jobtitle: 13 changes
📝 lastname: 4 changes
📝 firstname: 4 changes
📝 hubspot_owner_id: 16 changes
📝 phone: 5 changes
📝 email: 3 changes
📝 associatedcompanyid: 3 changes
🔔 Event: association_change
Count: 18
🔔 Event: creation
Count: 3
📦 Object Type: company
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 5
Properties:
📝 closedate: 2 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 2 changes
🔔 Event: association_change
Count: 14
INFO Looking for metrics: Config 680 (The Family Office Company - 700), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69507
|
1598
|
4
|
2026-04-22T08:14:08.791163+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845648791_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
📦 deal: 670 webhooks
🔔 property_change: 46 📦 deal: 670 webhooks
🔔 property_change: 469 events, 29 properties
🔔 association_change: 160 events, 0 properties
🔔 creation: 41 events, 0 properties
🏢 Config 766 (Marsello - 781) - 895 webhooks
📦 company: 312 webhooks
🔔 creation: 22 events, 0 properties
🔔 property_change: 87 events, 6 properties
🔔 association_change: 203 events, 0 properties
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
📦 deal: 20 webhooks
🔔 property_change: 16 events, 12 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🏢 Config 803 (E3 - 854) - 851 webhooks
📦 company: 139 webhooks
🔔 association_change: 134 events, 0 properties
🔔 property_change: 5 events, 4 properties
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
📦 deal: 159 webhooks
🔔 property_change: 104 events, 6 properties
🔔 association_change: 42 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 5009 webhooks
📦 company: 190 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 10 events, 0 properties
🔔 property_change: 134 events, 6 properties
📦 deal: 3962 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 3950 events, 21 properties
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 13362 webhooks
📦 company: 2775 webhooks
🔔 association_change: 1668 events, 0 properties
🔔 creation: 217 events, 0 properties
🔔 property_change: 890 events, 6 properties
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
📦 deal: 584 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 419 events, 0 properties
🔔 property_change: 153 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 1223 webhooks
📦 deal: 26 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 14 events, 3 properties
🔔 association_change: 9 events, 0 properties
📦 company: 457 webhooks
🔔 property_change: 447 events, 2 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks
📦 company: 614 webhooks
🔔 property_change: 175 events, 6 properties
🔔 creation: 15 events, 0 properties
🔔 association_change: 424 events, 0 properties
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
📦 deal: 9 webhooks
🔔 property_change: 8 events, 4 properties
🔔 association_change: 1 events, 0 properties
🏢 Config 880 (Immutable - 931) - 7898 webhooks
📦 deal: 27 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 4 events, 2 properties
🔔 association_change: 21 events, 0 properties
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
📦 company: 2284 webhooks
🔔 association_change: 1818 events, 0 properties
🔔 property_change: 308 events, 6 properties
🔔 creation: 158 events, 0 properties
🏢 Config 877 (GroWrk Remote - 927) - 342 webhooks
📦 company: 74 webhooks
🔔 property_change: 25 events, 6 properties
🔔 association_change: 44 events, 0 properties
🔔 creation: 5 events, 0 properties
📦 deal: 151 webhooks
🔔 property_change: 82 events, 11 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 11 events, 0 properties
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 871 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
📦 company: 299 webhooks
🔔 association_change: 188 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 93 events, 6 properties
📦 deal: 78 webhooks
🔔 property_change: 56 events, 9 properties
🔔 creation: 4 events, 0 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 547 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
📦 company: 40 webhooks
🔔 association_change: 30 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 3 properties
📦 deal: 42 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 25 events, 5 properties
🏢 Config 583 (One Core Media - 608) - 99 webhooks
📦 company: 32 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 463 webhooks
📦 company: 161 webhooks
🔔 association_change: 160 events, 0 properties
🔔 property_change: 1 events, 1 properties
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 deal: 147 webhooks
🔔 property_change: 69 events, 12 properties
🔔 association_change: 74 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 982 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
📦 company: 329 webhooks
🔔 property_change: 130 events, 4 properties
🔔 association_change: 154 events, 0 properties
🔔 creation: 45 events, 0 properties
📦 deal: 18 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 5 events, 2 properties
🏢 Config 270 (Heka Happy - 288) - 134 webhooks
📦 company: 34 webhooks
🔔 property_change: 13 events, 5 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 5 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 869 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
📦 deal: 266 webhooks
🔔 creation: 28 events, 0 properties
🔔 property_change: 153 events, 7 properties
🔔 association_change: 85 events, 0 properties
📦 company: 101 webhooks
🔔 association_change: 86 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 creation: 4 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 1101 webhooks
📦 deal: 190 webhooks
🔔 association_change: 57 events, 0 properties
🔔 property_change: 117 events, 8 properties
🔔 creation: 16 events, 0 properties
📦 company: 248 webhooks
🔔 association_change: 149 events, 0 properties
🔔 creation: 26 events, 0 properties
🔔 property_change: 73 events, 5 properties
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 225415 webhooks
📦 company: 35595 webhooks
🔔 property_change: 5687 events, 3 properties
🔔 association_change: 25219 events, 0 properties
🔔 creation: 4689 events, 0 properties
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
📦 deal: 113081 webhooks
🔔 creation: 7588 events, 0 properties
🔔 property_change: 82720 events, 9 properties
🔔 association_change: 22773 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 635 webhooks
📦 deal: 228 webhooks
🔔 property_change: 158 events, 9 properties
🔔 creation: 18 events, 0 properties
🔔 association_change: 52 events, 0 properties
📦 company: 142 webhooks
🔔 property_change: 59 events, 6 properties
🔔 association_change: 69 events, 0 properties
🔔 creation: 14 events, 0 properties
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 374 webhooks
📦 company: 64 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 15 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 118 webhooks
🔔 property_change: 78 events, 10 properties
🔔 association_change: 30 events, 0 properties
🔔 creation: 10 events, 0 properties
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 83 webhooks
📦 company: 11 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
📦 deal: 17 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🔔 property_change: 13 events, 6 properties
🏢 Config 1049 (Classavo - 851) - 24 webhooks
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 1 events, 0 properties
🏢 Config 290 (D1 Training - 308) - 898 webhooks
📦 company: 12 webhooks
🔔 property_change: 5 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 6 events, 0 properties
📦 deal: 480 webhooks
🔔 association_change: 40 events, 0 properties
🔔 creation: 35 events, 0 properties
🔔 property_change: 405 events, 8 properties
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 5388 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
📦 company: 1647 webhooks
🔔 association_change: 698 events, 0 properties
🔔 property_change: 637 events, 6 properties
🔔 creation: 312 events, 0 properties
📦 deal: 55 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 1231 webhooks
📦 company: 274 webhooks
🔔 property_change: 128 events, 6 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 120 events, 0 properties
📦 deal: 464 webhooks
🔔 creation: 16 events, 0 properties
🔔 property_change: 385 events, 23 properties
🔔 association_change: 63 events, 0 properties
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 3864 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
📦 company: 742 webhooks
🔔 association_change: 617 events, 0 properties
🔔 creation: 31 events, 0 properties
🔔 property_change: 94 events, 6 properties
📦 deal: 482 webhooks
🔔 association_change: 121 events, 0 properties
🔔 property_change: 338 events, 11 properties
🔔 creation: 23 events, 0 properties
🏢 Config 1053 (Sensi.AI - 1117) - 8574 webhooks
📦 company: 1694 webhooks
🔔 property_change: 156 events, 6 properties
🔔 creation: 39 events, 0 properties
🔔 association_change: 1499 events, 0 properties
📦 deal: 663 webhooks
🔔 property_change: 491 events, 15 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 74 events, 0 properties
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 2108 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
📦 deal: 39 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 23 events, 6 properties
📦 company: 330 webhooks
🔔 association_change: 298 events, 0 properties
🔔 property_change: 23 events, 5 properties
🔔 creation: 9 events, 0 properties
🏢 Config 518 (Prolific - 544) - 9399 webhooks
📦 deal: 26 webhooks
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
📦 company: 957 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 352 events, 0 properties
🔔 property_change: 575 events, 6 properties
🏢 Config 761 (Ressio Software - 770) - 4387 webhooks
📦 company: 2012 webhooks
🔔 property_change: 1370 events, 6 properties
🔔 creation: 207 events, 0 properties
🔔 association_change: 435 events, 0 properties
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
📦 deal: 255 webhooks
🔔 property_change: 119 events, 5 properties
🔔 creation: 17 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 874 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
📦 company: 64 webhooks
🔔 association_change: 36 events, 0 properties
🔔 property_change: 24 events, 6 properties
🔔 creation: 4 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
📦 deal: 280 webhooks
🔔 property_change: 225 events, 11 properties
🔔 creation: 14 events, 0 properties
🔔 association_change: 41 events, 0 properties
📦 company: 173 webhooks
🔔 property_change: 34 events, 3 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 130 events, 0 properties
🏢 Config 581 (Penfold - 606) - 1191 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
📦 company: 266 webhooks
🔔 creation: 21 events, 0 properties
🔔 property_change: 78 events, 6 properties
🔔 association_change: 167 events, 0 properties
📦 deal: 73 webhooks
🔔 association_change: 18 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 49 events, 7 properties
🏢 Config 1015 (Travefy - 1049) - 4021 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
📦 deal: 1468 webhooks
🔔 property_change: 1072 events, 10 properties
🔔 creation: 99 events, 0 properties
🔔 association_change: 297 events, 0 properties
📦 company: 924 webhooks
🔔 creation: 151 events, 0 properties
🔔 association_change: 510 events, 0 properties
🔔 property_change: 263 events, 2 properties
🏢 Config 413 (VCC - 347) - 56 webhooks
📦 deal: 11 webhooks
🔔 property_change: 10 events, 5 properties
🔔 association_change: 1 events, 0 properties
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 company: 30 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 18 events, 2 properties
🔔 creation: 9 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks
📦 company: 160 webhooks
🔔 property_change: 30 events, 3 properties
🔔 association_change: 122 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 34 webhooks
🔔 property_change: 34 events, 6 properties
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 243 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
📦 deal: 68 webhooks
🔔 creation: 5 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 47 events, 9 properties
📦 company: 42 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 12 events, 6 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 39 webhooks
📦 company: 13 webhooks
🔔 property_change: 5 events, 3 properties
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 163 webhooks
📦 company: 41 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 29 events, 0 properties
🔔 property_change: 11 events, 6 properties
📦 deal: 21 webhooks
🔔 property_change: 17 events, 6 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 580 webhooks
📦 deal: 255 webhooks
🔔 creation: 12 events, 0 properties
🔔 property_change: 204 events, 7 properties
🔔 association_change: 39 events, 0 properties
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
📦 company: 132 webhooks
🔔 property_change: 61 events, 6 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 300 (Prowly - 318) - 430 webhooks
📦 company: 102 webhooks
🔔 creation: 10 events, 0 properties
🔔 association_change: 66 events, 0 properties
🔔 property_change: 26 events, 6 properties
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
📦 deal: 126 webhooks
🔔 property_change: 80 events, 9 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 37 events, 0 properties
🏢 Config 265 (Orbital - 283) - 3300 webhooks
📦 deal: 255 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 207 events, 10 properties
🔔 association_change: 45 events, 0 properties
📦 company: 921 webhooks
🔔 property_change: 48 events, 6 properties
🔔 creation: 11 events, 0 properties
🔔 association_change: 862 events, 0 properties
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 1138 webhooks
📦 company: 141 webhooks
🔔 property_change: 35 events, 3 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 59 webhooks
🔔 creation: 11 events, 0 properties
🔔 association_change: 27 events, 0 properties
🔔 property_change: 21 events, 5 properties
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 70 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
📦 company: 16 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🔔 association_change: 10 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 3713 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
📦 deal: 1822 webhooks
🔔 creation: 18 events, 0 properties
🔔 association_change: 1278 events, 0 properties
🔔 property_change: 526 events, 7 properties
📦 company: 556 webhooks
🔔 association_change: 451 events, 0 properties
🔔 property_change: 68 events, 3 properties
🔔 creation: 37 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 67 webhooks
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 31 webhooks
🔔 association_change: 7 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 23 events, 7 properties
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 151 webhooks
📦 company: 35 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 8 events, 4 properties
🔔 association_change: 22 events, 0 properties
📦 deal: 1 webhooks
🔔 property_change: 1 events, 1 properties
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 4102 webhooks
📦 company: 1117 webhooks
🔔 creation: 92 events, 0 properties
🔔 association_change: 676 events, 0 properties
🔔 property_change: 349 events, 4 properties
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
📦 deal: 61 webhooks
🔔 property_change: 49 events, 13 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 97 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 20 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 3 properties
🔔 association_change: 14 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 2244 webhooks
📦 company: 297 webhooks
🔔 property_change: 104 events, 3 properties
🔔 association_change: 155 events, 0 properties
🔔 creation: 38 events, 0 properties
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
📦 deal: 430 webhooks
🔔 property_change: 285 events, 6 properties
🔔 creation: 40 events, 0 properties
🔔 association_change: 105 events, 0 properties
🏢 Config 339 (Rosterfy - 359) - 1274 webhooks
📦 deal: 86 webhooks
🔔 property_change: 69 events, 8 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 14 events, 0 properties
📦 company: 370 webhooks
🔔 creation: 33 events, 0 properties
🔔 property_change: 163 events, 6 properties
🔔 association_change: 174 events, 0 properties
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 344 webhooks
📦 deal: 82 webhooks
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 70 events, 8 properties
📦 company: 89 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🔔 property_change: 34 events, 4 properties
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 174 webhooks
📦 company: 40 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 22 events, 5 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"📦\u0000 deal: 670 webhooks\n 🔔\u0000 property_change: 469 events, 29 properties\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 creation: 41 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 895 webhooks\n 📦\u0000 company: 312 webhooks\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 6 properties\n 🔔\u0000 association_change: 203 events, 0 properties\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 property_change: 16 events, 12 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 851 webhooks\n 📦\u0000 company: 139 webhooks\n 🔔\u0000 association_change: 134 events, 0 properties\n 🔔\u0000 property_change: 5 events, 4 properties\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n 📦\u0000 deal: 159 webhooks\n 🔔\u0000 property_change: 104 events, 6 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 5009 webhooks\n 📦\u0000 company: 190 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 property_change: 134 events, 6 properties\n 📦\u0000 deal: 3962 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 3950 events, 21 properties\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 13362 webhooks\n 📦\u0000 company: 2775 webhooks\n 🔔\u0000 association_change: 1668 events, 0 properties\n 🔔\u0000 creation: 217 events, 0 properties\n 🔔\u0000 property_change: 890 events, 6 properties\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n 📦\u0000 deal: 584 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 419 events, 0 properties\n 🔔\u0000 property_change: 153 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 1223 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 3 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 company: 457 webhooks\n 🔔\u0000 property_change: 447 events, 2 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks\n 📦\u0000 company: 614 webhooks\n 🔔\u0000 property_change: 175 events, 6 properties\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 association_change: 424 events, 0 properties\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n 📦\u0000 deal: 9 webhooks\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 7898 webhooks\n 📦\u0000 deal: 27 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 4 events, 2 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n 📦\u0000 company: 2284 webhooks\n 🔔\u0000 association_change: 1818 events, 0 properties\n 🔔\u0000 property_change: 308 events, 6 properties\n 🔔\u0000 creation: 158 events, 0 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 342 webhooks\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 property_change: 25 events, 6 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 deal: 151 webhooks\n 🔔\u0000 property_change: 82 events, 11 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 871 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n 📦\u0000 company: 299 webhooks\n 🔔\u0000 association_change: 188 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 93 events, 6 properties\n 📦\u0000 deal: 78 webhooks\n 🔔\u0000 property_change: 56 events, 9 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 547 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 3 properties\n 📦\u0000 deal: 42 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 25 events, 5 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 99 webhooks\n 📦\u0000 company: 32 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 463 webhooks\n 📦\u0000 company: 161 webhooks\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 147 webhooks\n 🔔\u0000 property_change: 69 events, 12 properties\n 🔔\u0000 association_change: 74 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 982 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n 📦\u0000 company: 329 webhooks\n 🔔\u0000 property_change: 130 events, 4 properties\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 45 events, 0 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 5 events, 2 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 134 webhooks\n 📦\u0000 company: 34 webhooks\n 🔔\u0000 property_change: 13 events, 5 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 869 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n 📦\u0000 deal: 266 webhooks\n 🔔\u0000 creation: 28 events, 0 properties\n 🔔\u0000 property_change: 153 events, 7 properties\n 🔔\u0000 association_change: 85 events, 0 properties\n 📦\u0000 company: 101 webhooks\n 🔔\u0000 association_change: 86 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 1101 webhooks\n 📦\u0000 deal: 190 webhooks\n 🔔\u0000 association_change: 57 events, 0 properties\n 🔔\u0000 property_change: 117 events, 8 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 📦\u0000 company: 248 webhooks\n 🔔\u0000 association_change: 149 events, 0 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 property_change: 73 events, 5 properties\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 225415 webhooks\n 📦\u0000 company: 35595 webhooks\n 🔔\u0000 property_change: 5687 events, 3 properties\n 🔔\u0000 association_change: 25219 events, 0 properties\n 🔔\u0000 creation: 4689 events, 0 properties\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n 📦\u0000 deal: 113081 webhooks\n 🔔\u0000 creation: 7588 events, 0 properties\n 🔔\u0000 property_change: 82720 events, 9 properties\n 🔔\u0000 association_change: 22773 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 635 webhooks\n 📦\u0000 deal: 228 webhooks\n 🔔\u0000 property_change: 158 events, 9 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 52 events, 0 properties\n 📦\u0000 company: 142 webhooks\n 🔔\u0000 property_change: 59 events, 6 properties\n 🔔\u0000 association_change: 69 events, 0 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 374 webhooks\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 118 webhooks\n 🔔\u0000 property_change: 78 events, 10 properties\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 83 webhooks\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 deal: 17 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 13 events, 6 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 24 webhooks\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 898 webhooks\n 📦\u0000 company: 12 webhooks\n 🔔\u0000 property_change: 5 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 📦\u0000 deal: 480 webhooks\n 🔔\u0000 association_change: 40 events, 0 properties\n 🔔\u0000 creation: 35 events, 0 properties\n 🔔\u0000 property_change: 405 events, 8 properties\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 5388 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n 📦\u0000 company: 1647 webhooks\n 🔔\u0000 association_change: 698 events, 0 properties\n 🔔\u0000 property_change: 637 events, 6 properties\n 🔔\u0000 creation: 312 events, 0 properties\n 📦\u0000 deal: 55 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 1231 webhooks\n 📦\u0000 company: 274 webhooks\n 🔔\u0000 property_change: 128 events, 6 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 120 events, 0 properties\n 📦\u0000 deal: 464 webhooks\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 385 events, 23 properties\n 🔔\u0000 association_change: 63 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 3864 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n 📦\u0000 company: 742 webhooks\n 🔔\u0000 association_change: 617 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 🔔\u0000 property_change: 94 events, 6 properties\n 📦\u0000 deal: 482 webhooks\n 🔔\u0000 association_change: 121 events, 0 properties\n 🔔\u0000 property_change: 338 events, 11 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 8574 webhooks\n 📦\u0000 company: 1694 webhooks\n 🔔\u0000 property_change: 156 events, 6 properties\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 1499 events, 0 properties\n 📦\u0000 deal: 663 webhooks\n 🔔\u0000 property_change: 491 events, 15 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 74 events, 0 properties\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 2108 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n 📦\u0000 deal: 39 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 23 events, 6 properties\n 📦\u0000 company: 330 webhooks\n 🔔\u0000 association_change: 298 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 9399 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n 📦\u0000 company: 957 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 352 events, 0 properties\n 🔔\u0000 property_change: 575 events, 6 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 4387 webhooks\n 📦\u0000 company: 2012 webhooks\n 🔔\u0000 property_change: 1370 events, 6 properties\n 🔔\u0000 creation: 207 events, 0 properties\n 🔔\u0000 association_change: 435 events, 0 properties\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 property_change: 119 events, 5 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 874 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 association_change: 36 events, 0 properties\n 🔔\u0000 property_change: 24 events, 6 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n 📦\u0000 deal: 280 webhooks\n 🔔\u0000 property_change: 225 events, 11 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 🔔\u0000 association_change: 41 events, 0 properties\n 📦\u0000 company: 173 webhooks\n 🔔\u0000 property_change: 34 events, 3 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 130 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 1191 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n 📦\u0000 company: 266 webhooks\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 78 events, 6 properties\n 🔔\u0000 association_change: 167 events, 0 properties\n 📦\u0000 deal: 73 webhooks\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 49 events, 7 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 4021 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n 📦\u0000 deal: 1468 webhooks\n 🔔\u0000 property_change: 1072 events, 10 properties\n 🔔\u0000 creation: 99 events, 0 properties\n 🔔\u0000 association_change: 297 events, 0 properties\n 📦\u0000 company: 924 webhooks\n 🔔\u0000 creation: 151 events, 0 properties\n 🔔\u0000 association_change: 510 events, 0 properties\n 🔔\u0000 property_change: 263 events, 2 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 56 webhooks\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 10 events, 5 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 30 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 18 events, 2 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks\n 📦\u0000 company: 160 webhooks\n 🔔\u0000 property_change: 30 events, 3 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 34 webhooks\n 🔔\u0000 property_change: 34 events, 6 properties\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 243 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 📦\u0000 deal: 68 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 47 events, 9 properties\n 📦\u0000 company: 42 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 12 events, 6 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 39 webhooks\n 📦\u0000 company: 13 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 163 webhooks\n 📦\u0000 company: 41 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 property_change: 11 events, 6 properties\n 📦\u0000 deal: 21 webhooks\n 🔔\u0000 property_change: 17 events, 6 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 580 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 property_change: 204 events, 7 properties\n 🔔\u0000 association_change: 39 events, 0 properties\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 132 webhooks\n 🔔\u0000 property_change: 61 events, 6 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 430 webhooks\n 📦\u0000 company: 102 webhooks\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 66 events, 0 properties\n 🔔\u0000 property_change: 26 events, 6 properties\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n 📦\u0000 deal: 126 webhooks\n 🔔\u0000 property_change: 80 events, 9 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 37 events, 0 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 3300 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 207 events, 10 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 921 webhooks\n 🔔\u0000 property_change: 48 events, 6 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 862 events, 0 properties\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 1138 webhooks\n 📦\u0000 company: 141 webhooks\n 🔔\u0000 property_change: 35 events, 3 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 59 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 property_change: 21 events, 5 properties\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 70 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 16 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 3713 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n 📦\u0000 deal: 1822 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 1278 events, 0 properties\n 🔔\u0000 property_change: 526 events, 7 properties\n 📦\u0000 company: 556 webhooks\n 🔔\u0000 association_change: 451 events, 0 properties\n 🔔\u0000 property_change: 68 events, 3 properties\n 🔔\u0000 creation: 37 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 67 webhooks\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 31 webhooks\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 23 events, 7 properties\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 151 webhooks\n 📦\u0000 company: 35 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 deal: 1 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 4102 webhooks\n 📦\u0000 company: 1117 webhooks\n 🔔\u0000 creation: 92 events, 0 properties\n 🔔\u0000 association_change: 676 events, 0 properties\n 🔔\u0000 property_change: 349 events, 4 properties\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n 📦\u0000 deal: 61 webhooks\n 🔔\u0000 property_change: 49 events, 13 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 97 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 2244 webhooks\n 📦\u0000 company: 297 webhooks\n 🔔\u0000 property_change: 104 events, 3 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n 🔔\u0000 creation: 38 events, 0 properties\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n 📦\u0000 deal: 430 webhooks\n 🔔\u0000 property_change: 285 events, 6 properties\n 🔔\u0000 creation: 40 events, 0 properties\n 🔔\u0000 association_change: 105 events, 0 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 1274 webhooks\n 📦\u0000 deal: 86 webhooks\n 🔔\u0000 property_change: 69 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n 📦\u0000 company: 370 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 163 events, 6 properties\n 🔔\u0000 association_change: 174 events, 0 properties\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 344 webhooks\n 📦\u0000 deal: 82 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 70 events, 8 properties\n 📦\u0000 company: 89 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 34 events, 4 properties\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 174 webhooks\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 22 events, 5 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"📦\u0000 deal: 670 webhooks\n 🔔\u0000 property_change: 469 events, 29 properties\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 creation: 41 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 895 webhooks\n 📦\u0000 company: 312 webhooks\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 6 properties\n 🔔\u0000 association_change: 203 events, 0 properties\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 property_change: 16 events, 12 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 851 webhooks\n 📦\u0000 company: 139 webhooks\n 🔔\u0000 association_change: 134 events, 0 properties\n 🔔\u0000 property_change: 5 events, 4 properties\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n 📦\u0000 deal: 159 webhooks\n 🔔\u0000 property_change: 104 events, 6 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 5009 webhooks\n 📦\u0000 company: 190 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 property_change: 134 events, 6 properties\n 📦\u0000 deal: 3962 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 3950 events, 21 properties\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 13362 webhooks\n 📦\u0000 company: 2775 webhooks\n 🔔\u0000 association_change: 1668 events, 0 properties\n 🔔\u0000 creation: 217 events, 0 properties\n 🔔\u0000 property_change: 890 events, 6 properties\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n 📦\u0000 deal: 584 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 419 events, 0 properties\n 🔔\u0000 property_change: 153 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 1223 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 3 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 company: 457 webhooks\n 🔔\u0000 property_change: 447 events, 2 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks\n 📦\u0000 company: 614 webhooks\n 🔔\u0000 property_change: 175 events, 6 properties\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 association_change: 424 events, 0 properties\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n 📦\u0000 deal: 9 webhooks\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 7898 webhooks\n 📦\u0000 deal: 27 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 4 events, 2 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n 📦\u0000 company: 2284 webhooks\n 🔔\u0000 association_change: 1818 events, 0 properties\n 🔔\u0000 property_change: 308 events, 6 properties\n 🔔\u0000 creation: 158 events, 0 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 342 webhooks\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 property_change: 25 events, 6 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 deal: 151 webhooks\n 🔔\u0000 property_change: 82 events, 11 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 871 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n 📦\u0000 company: 299 webhooks\n 🔔\u0000 association_change: 188 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 93 events, 6 properties\n 📦\u0000 deal: 78 webhooks\n 🔔\u0000 property_change: 56 events, 9 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 547 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 3 properties\n 📦\u0000 deal: 42 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 25 events, 5 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 99 webhooks\n 📦\u0000 company: 32 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 463 webhooks\n 📦\u0000 company: 161 webhooks\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 147 webhooks\n 🔔\u0000 property_change: 69 events, 12 properties\n 🔔\u0000 association_change: 74 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 982 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n 📦\u0000 company: 329 webhooks\n 🔔\u0000 property_change: 130 events, 4 properties\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 45 events, 0 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 5 events, 2 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 134 webhooks\n 📦\u0000 company: 34 webhooks\n 🔔\u0000 property_change: 13 events, 5 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 869 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n 📦\u0000 deal: 266 webhooks\n 🔔\u0000 creation: 28 events, 0 properties\n 🔔\u0000 property_change: 153 events, 7 properties\n 🔔\u0000 association_change: 85 events, 0 properties\n 📦\u0000 company: 101 webhooks\n 🔔\u0000 association_change: 86 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 1101 webhooks\n 📦\u0000 deal: 190 webhooks\n 🔔\u0000 association_change: 57 events, 0 properties\n 🔔\u0000 property_change: 117 events, 8 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 📦\u0000 company: 248 webhooks\n 🔔\u0000 association_change: 149 events, 0 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 property_change: 73 events, 5 properties\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 225415 webhooks\n 📦\u0000 company: 35595 webhooks\n 🔔\u0000 property_change: 5687 events, 3 properties\n 🔔\u0000 association_change: 25219 events, 0 properties\n 🔔\u0000 creation: 4689 events, 0 properties\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n 📦\u0000 deal: 113081 webhooks\n 🔔\u0000 creation: 7588 events, 0 properties\n 🔔\u0000 property_change: 82720 events, 9 properties\n 🔔\u0000 association_change: 22773 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 635 webhooks\n 📦\u0000 deal: 228 webhooks\n 🔔\u0000 property_change: 158 events, 9 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 52 events, 0 properties\n 📦\u0000 company: 142 webhooks\n 🔔\u0000 property_change: 59 events, 6 properties\n 🔔\u0000 association_change: 69 events, 0 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 374 webhooks\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 118 webhooks\n 🔔\u0000 property_change: 78 events, 10 properties\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 83 webhooks\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 deal: 17 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 13 events, 6 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 24 webhooks\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 898 webhooks\n 📦\u0000 company: 12 webhooks\n 🔔\u0000 property_change: 5 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 📦\u0000 deal: 480 webhooks\n 🔔\u0000 association_change: 40 events, 0 properties\n 🔔\u0000 creation: 35 events, 0 properties\n 🔔\u0000 property_change: 405 events, 8 properties\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 5388 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n 📦\u0000 company: 1647 webhooks\n 🔔\u0000 association_change: 698 events, 0 properties\n 🔔\u0000 property_change: 637 events, 6 properties\n 🔔\u0000 creation: 312 events, 0 properties\n 📦\u0000 deal: 55 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 1231 webhooks\n 📦\u0000 company: 274 webhooks\n 🔔\u0000 property_change: 128 events, 6 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 120 events, 0 properties\n 📦\u0000 deal: 464 webhooks\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 385 events, 23 properties\n 🔔\u0000 association_change: 63 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 3864 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n 📦\u0000 company: 742 webhooks\n 🔔\u0000 association_change: 617 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 🔔\u0000 property_change: 94 events, 6 properties\n 📦\u0000 deal: 482 webhooks\n 🔔\u0000 association_change: 121 events, 0 properties\n 🔔\u0000 property_change: 338 events, 11 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 8574 webhooks\n 📦\u0000 company: 1694 webhooks\n 🔔\u0000 property_change: 156 events, 6 properties\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 1499 events, 0 properties\n 📦\u0000 deal: 663 webhooks\n 🔔\u0000 property_change: 491 events, 15 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 74 events, 0 properties\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 2108 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n 📦\u0000 deal: 39 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 23 events, 6 properties\n 📦\u0000 company: 330 webhooks\n 🔔\u0000 association_change: 298 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 9399 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n 📦\u0000 company: 957 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 352 events, 0 properties\n 🔔\u0000 property_change: 575 events, 6 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 4387 webhooks\n 📦\u0000 company: 2012 webhooks\n 🔔\u0000 property_change: 1370 events, 6 properties\n 🔔\u0000 creation: 207 events, 0 properties\n 🔔\u0000 association_change: 435 events, 0 properties\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 property_change: 119 events, 5 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 874 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 association_change: 36 events, 0 properties\n 🔔\u0000 property_change: 24 events, 6 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n 📦\u0000 deal: 280 webhooks\n 🔔\u0000 property_change: 225 events, 11 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 🔔\u0000 association_change: 41 events, 0 properties\n 📦\u0000 company: 173 webhooks\n 🔔\u0000 property_change: 34 events, 3 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 130 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 1191 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n 📦\u0000 company: 266 webhooks\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 78 events, 6 properties\n 🔔\u0000 association_change: 167 events, 0 properties\n 📦\u0000 deal: 73 webhooks\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 49 events, 7 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 4021 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n 📦\u0000 deal: 1468 webhooks\n 🔔\u0000 property_change: 1072 events, 10 properties\n 🔔\u0000 creation: 99 events, 0 properties\n 🔔\u0000 association_change: 297 events, 0 properties\n 📦\u0000 company: 924 webhooks\n 🔔\u0000 creation: 151 events, 0 properties\n 🔔\u0000 association_change: 510 events, 0 properties\n 🔔\u0000 property_change: 263 events, 2 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 56 webhooks\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 10 events, 5 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 30 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 18 events, 2 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks\n 📦\u0000 company: 160 webhooks\n 🔔\u0000 property_change: 30 events, 3 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 34 webhooks\n 🔔\u0000 property_change: 34 events, 6 properties\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 243 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 📦\u0000 deal: 68 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 47 events, 9 properties\n 📦\u0000 company: 42 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 12 events, 6 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 39 webhooks\n 📦\u0000 company: 13 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 163 webhooks\n 📦\u0000 company: 41 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 property_change: 11 events, 6 properties\n 📦\u0000 deal: 21 webhooks\n 🔔\u0000 property_change: 17 events, 6 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 580 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 property_change: 204 events, 7 properties\n 🔔\u0000 association_change: 39 events, 0 properties\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 132 webhooks\n 🔔\u0000 property_change: 61 events, 6 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 430 webhooks\n 📦\u0000 company: 102 webhooks\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 66 events, 0 properties\n 🔔\u0000 property_change: 26 events, 6 properties\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n 📦\u0000 deal: 126 webhooks\n 🔔\u0000 property_change: 80 events, 9 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 37 events, 0 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 3300 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 207 events, 10 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 921 webhooks\n 🔔\u0000 property_change: 48 events, 6 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 862 events, 0 properties\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 1138 webhooks\n 📦\u0000 company: 141 webhooks\n 🔔\u0000 property_change: 35 events, 3 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 59 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 property_change: 21 events, 5 properties\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 70 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 16 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 3713 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n 📦\u0000 deal: 1822 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 1278 events, 0 properties\n 🔔\u0000 property_change: 526 events, 7 properties\n 📦\u0000 company: 556 webhooks\n 🔔\u0000 association_change: 451 events, 0 properties\n 🔔\u0000 property_change: 68 events, 3 properties\n 🔔\u0000 creation: 37 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 67 webhooks\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 31 webhooks\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 23 events, 7 properties\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 151 webhooks\n 📦\u0000 company: 35 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 deal: 1 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 4102 webhooks\n 📦\u0000 company: 1117 webhooks\n 🔔\u0000 creation: 92 events, 0 properties\n 🔔\u0000 association_change: 676 events, 0 properties\n 🔔\u0000 property_change: 349 events, 4 properties\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n 📦\u0000 deal: 61 webhooks\n 🔔\u0000 property_change: 49 events, 13 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 97 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 2244 webhooks\n 📦\u0000 company: 297 webhooks\n 🔔\u0000 property_change: 104 events, 3 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n 🔔\u0000 creation: 38 events, 0 properties\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n 📦\u0000 deal: 430 webhooks\n 🔔\u0000 property_change: 285 events, 6 properties\n 🔔\u0000 creation: 40 events, 0 properties\n 🔔\u0000 association_change: 105 events, 0 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 1274 webhooks\n 📦\u0000 deal: 86 webhooks\n 🔔\u0000 property_change: 69 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n 📦\u0000 company: 370 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 163 events, 6 properties\n 🔔\u0000 association_change: 174 events, 0 properties\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 344 webhooks\n 📦\u0000 deal: 82 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 70 events, 8 properties\n 📦\u0000 company: 89 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 34 events, 4 properties\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 174 webhooks\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 22 events, 5 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
6209721463328613401
|
-5421059355093915696
|
visual_change
|
accessibility
|
NULL
|
📦 deal: 670 webhooks
🔔 property_change: 46 📦 deal: 670 webhooks
🔔 property_change: 469 events, 29 properties
🔔 association_change: 160 events, 0 properties
🔔 creation: 41 events, 0 properties
🏢 Config 766 (Marsello - 781) - 895 webhooks
📦 company: 312 webhooks
🔔 creation: 22 events, 0 properties
🔔 property_change: 87 events, 6 properties
🔔 association_change: 203 events, 0 properties
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
📦 deal: 20 webhooks
🔔 property_change: 16 events, 12 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🏢 Config 803 (E3 - 854) - 851 webhooks
📦 company: 139 webhooks
🔔 association_change: 134 events, 0 properties
🔔 property_change: 5 events, 4 properties
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
📦 deal: 159 webhooks
🔔 property_change: 104 events, 6 properties
🔔 association_change: 42 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 5009 webhooks
📦 company: 190 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 10 events, 0 properties
🔔 property_change: 134 events, 6 properties
📦 deal: 3962 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 3950 events, 21 properties
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 13362 webhooks
📦 company: 2775 webhooks
🔔 association_change: 1668 events, 0 properties
🔔 creation: 217 events, 0 properties
🔔 property_change: 890 events, 6 properties
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
📦 deal: 584 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 419 events, 0 properties
🔔 property_change: 153 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 1223 webhooks
📦 deal: 26 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 14 events, 3 properties
🔔 association_change: 9 events, 0 properties
📦 company: 457 webhooks
🔔 property_change: 447 events, 2 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks
📦 company: 614 webhooks
🔔 property_change: 175 events, 6 properties
🔔 creation: 15 events, 0 properties
🔔 association_change: 424 events, 0 properties
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
📦 deal: 9 webhooks
🔔 property_change: 8 events, 4 properties
🔔 association_change: 1 events, 0 properties
🏢 Config 880 (Immutable - 931) - 7898 webhooks
📦 deal: 27 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 4 events, 2 properties
🔔 association_change: 21 events, 0 properties
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
📦 company: 2284 webhooks
🔔 association_change: 1818 events, 0 properties
🔔 property_change: 308 events, 6 properties
🔔 creation: 158 events, 0 properties
🏢 Config 877 (GroWrk Remote - 927) - 342 webhooks
📦 company: 74 webhooks
🔔 property_change: 25 events, 6 properties
🔔 association_change: 44 events, 0 properties
🔔 creation: 5 events, 0 properties
📦 deal: 151 webhooks
🔔 property_change: 82 events, 11 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 11 events, 0 properties
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 871 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
📦 company: 299 webhooks
🔔 association_change: 188 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 93 events, 6 properties
📦 deal: 78 webhooks
🔔 property_change: 56 events, 9 properties
🔔 creation: 4 events, 0 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 547 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
📦 company: 40 webhooks
🔔 association_change: 30 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 3 properties
📦 deal: 42 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 25 events, 5 properties
🏢 Config 583 (One Core Media - 608) - 99 webhooks
📦 company: 32 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 463 webhooks
📦 company: 161 webhooks
🔔 association_change: 160 events, 0 properties
🔔 property_change: 1 events, 1 properties
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 deal: 147 webhooks
🔔 property_change: 69 events, 12 properties
🔔 association_change: 74 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 982 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
📦 company: 329 webhooks
🔔 property_change: 130 events, 4 properties
🔔 association_change: 154 events, 0 properties
🔔 creation: 45 events, 0 properties
📦 deal: 18 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 5 events, 2 properties
🏢 Config 270 (Heka Happy - 288) - 134 webhooks
📦 company: 34 webhooks
🔔 property_change: 13 events, 5 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 5 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 869 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
📦 deal: 266 webhooks
🔔 creation: 28 events, 0 properties
🔔 property_change: 153 events, 7 properties
🔔 association_change: 85 events, 0 properties
📦 company: 101 webhooks
🔔 association_change: 86 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 creation: 4 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 1101 webhooks
📦 deal: 190 webhooks
🔔 association_change: 57 events, 0 properties
🔔 property_change: 117 events, 8 properties
🔔 creation: 16 events, 0 properties
📦 company: 248 webhooks
🔔 association_change: 149 events, 0 properties
🔔 creation: 26 events, 0 properties
🔔 property_change: 73 events, 5 properties
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 225415 webhooks
📦 company: 35595 webhooks
🔔 property_change: 5687 events, 3 properties
🔔 association_change: 25219 events, 0 properties
🔔 creation: 4689 events, 0 properties
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
📦 deal: 113081 webhooks
🔔 creation: 7588 events, 0 properties
🔔 property_change: 82720 events, 9 properties
🔔 association_change: 22773 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 635 webhooks
📦 deal: 228 webhooks
🔔 property_change: 158 events, 9 properties
🔔 creation: 18 events, 0 properties
🔔 association_change: 52 events, 0 properties
📦 company: 142 webhooks
🔔 property_change: 59 events, 6 properties
🔔 association_change: 69 events, 0 properties
🔔 creation: 14 events, 0 properties
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 374 webhooks
📦 company: 64 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 15 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 118 webhooks
🔔 property_change: 78 events, 10 properties
🔔 association_change: 30 events, 0 properties
🔔 creation: 10 events, 0 properties
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 83 webhooks
📦 company: 11 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
📦 deal: 17 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🔔 property_change: 13 events, 6 properties
🏢 Config 1049 (Classavo - 851) - 24 webhooks
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 1 events, 0 properties
🏢 Config 290 (D1 Training - 308) - 898 webhooks
📦 company: 12 webhooks
🔔 property_change: 5 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 6 events, 0 properties
📦 deal: 480 webhooks
🔔 association_change: 40 events, 0 properties
🔔 creation: 35 events, 0 properties
🔔 property_change: 405 events, 8 properties
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 5388 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
📦 company: 1647 webhooks
🔔 association_change: 698 events, 0 properties
🔔 property_change: 637 events, 6 properties
🔔 creation: 312 events, 0 properties
📦 deal: 55 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 1231 webhooks
📦 company: 274 webhooks
🔔 property_change: 128 events, 6 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 120 events, 0 properties
📦 deal: 464 webhooks
🔔 creation: 16 events, 0 properties
🔔 property_change: 385 events, 23 properties
🔔 association_change: 63 events, 0 properties
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 3864 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
📦 company: 742 webhooks
🔔 association_change: 617 events, 0 properties
🔔 creation: 31 events, 0 properties
🔔 property_change: 94 events, 6 properties
📦 deal: 482 webhooks
🔔 association_change: 121 events, 0 properties
🔔 property_change: 338 events, 11 properties
🔔 creation: 23 events, 0 properties
🏢 Config 1053 (Sensi.AI - 1117) - 8574 webhooks
📦 company: 1694 webhooks
🔔 property_change: 156 events, 6 properties
🔔 creation: 39 events, 0 properties
🔔 association_change: 1499 events, 0 properties
📦 deal: 663 webhooks
🔔 property_change: 491 events, 15 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 74 events, 0 properties
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 2108 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
📦 deal: 39 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 23 events, 6 properties
📦 company: 330 webhooks
🔔 association_change: 298 events, 0 properties
🔔 property_change: 23 events, 5 properties
🔔 creation: 9 events, 0 properties
🏢 Config 518 (Prolific - 544) - 9399 webhooks
📦 deal: 26 webhooks
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
📦 company: 957 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 352 events, 0 properties
🔔 property_change: 575 events, 6 properties
🏢 Config 761 (Ressio Software - 770) - 4387 webhooks
📦 company: 2012 webhooks
🔔 property_change: 1370 events, 6 properties
🔔 creation: 207 events, 0 properties
🔔 association_change: 435 events, 0 properties
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
📦 deal: 255 webhooks
🔔 property_change: 119 events, 5 properties
🔔 creation: 17 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 874 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
📦 company: 64 webhooks
🔔 association_change: 36 events, 0 properties
🔔 property_change: 24 events, 6 properties
🔔 creation: 4 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
📦 deal: 280 webhooks
🔔 property_change: 225 events, 11 properties
🔔 creation: 14 events, 0 properties
🔔 association_change: 41 events, 0 properties
📦 company: 173 webhooks
🔔 property_change: 34 events, 3 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 130 events, 0 properties
🏢 Config 581 (Penfold - 606) - 1191 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
📦 company: 266 webhooks
🔔 creation: 21 events, 0 properties
🔔 property_change: 78 events, 6 properties
🔔 association_change: 167 events, 0 properties
📦 deal: 73 webhooks
🔔 association_change: 18 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 49 events, 7 properties
🏢 Config 1015 (Travefy - 1049) - 4021 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
📦 deal: 1468 webhooks
🔔 property_change: 1072 events, 10 properties
🔔 creation: 99 events, 0 properties
🔔 association_change: 297 events, 0 properties
📦 company: 924 webhooks
🔔 creation: 151 events, 0 properties
🔔 association_change: 510 events, 0 properties
🔔 property_change: 263 events, 2 properties
🏢 Config 413 (VCC - 347) - 56 webhooks
📦 deal: 11 webhooks
🔔 property_change: 10 events, 5 properties
🔔 association_change: 1 events, 0 properties
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 company: 30 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 18 events, 2 properties
🔔 creation: 9 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks
📦 company: 160 webhooks
🔔 property_change: 30 events, 3 properties
🔔 association_change: 122 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 34 webhooks
🔔 property_change: 34 events, 6 properties
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 243 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
📦 deal: 68 webhooks
🔔 creation: 5 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 47 events, 9 properties
📦 company: 42 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 12 events, 6 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 39 webhooks
📦 company: 13 webhooks
🔔 property_change: 5 events, 3 properties
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 163 webhooks
📦 company: 41 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 29 events, 0 properties
🔔 property_change: 11 events, 6 properties
📦 deal: 21 webhooks
🔔 property_change: 17 events, 6 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 580 webhooks
📦 deal: 255 webhooks
🔔 creation: 12 events, 0 properties
🔔 property_change: 204 events, 7 properties
🔔 association_change: 39 events, 0 properties
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
📦 company: 132 webhooks
🔔 property_change: 61 events, 6 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 300 (Prowly - 318) - 430 webhooks
📦 company: 102 webhooks
🔔 creation: 10 events, 0 properties
🔔 association_change: 66 events, 0 properties
🔔 property_change: 26 events, 6 properties
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
📦 deal: 126 webhooks
🔔 property_change: 80 events, 9 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 37 events, 0 properties
🏢 Config 265 (Orbital - 283) - 3300 webhooks
📦 deal: 255 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 207 events, 10 properties
🔔 association_change: 45 events, 0 properties
📦 company: 921 webhooks
🔔 property_change: 48 events, 6 properties
🔔 creation: 11 events, 0 properties
🔔 association_change: 862 events, 0 properties
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 1138 webhooks
📦 company: 141 webhooks
🔔 property_change: 35 events, 3 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 59 webhooks
🔔 creation: 11 events, 0 properties
🔔 association_change: 27 events, 0 properties
🔔 property_change: 21 events, 5 properties
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 70 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
📦 company: 16 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🔔 association_change: 10 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 3713 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
📦 deal: 1822 webhooks
🔔 creation: 18 events, 0 properties
🔔 association_change: 1278 events, 0 properties
🔔 property_change: 526 events, 7 properties
📦 company: 556 webhooks
🔔 association_change: 451 events, 0 properties
🔔 property_change: 68 events, 3 properties
🔔 creation: 37 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 67 webhooks
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 31 webhooks
🔔 association_change: 7 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 23 events, 7 properties
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 151 webhooks
📦 company: 35 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 8 events, 4 properties
🔔 association_change: 22 events, 0 properties
📦 deal: 1 webhooks
🔔 property_change: 1 events, 1 properties
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 4102 webhooks
📦 company: 1117 webhooks
🔔 creation: 92 events, 0 properties
🔔 association_change: 676 events, 0 properties
🔔 property_change: 349 events, 4 properties
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
📦 deal: 61 webhooks
🔔 property_change: 49 events, 13 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 97 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 20 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 3 properties
🔔 association_change: 14 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 2244 webhooks
📦 company: 297 webhooks
🔔 property_change: 104 events, 3 properties
🔔 association_change: 155 events, 0 properties
🔔 creation: 38 events, 0 properties
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
📦 deal: 430 webhooks
🔔 property_change: 285 events, 6 properties
🔔 creation: 40 events, 0 properties
🔔 association_change: 105 events, 0 properties
🏢 Config 339 (Rosterfy - 359) - 1274 webhooks
📦 deal: 86 webhooks
🔔 property_change: 69 events, 8 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 14 events, 0 properties
📦 company: 370 webhooks
🔔 creation: 33 events, 0 properties
🔔 property_change: 163 events, 6 properties
🔔 association_change: 174 events, 0 properties
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 344 webhooks
📦 deal: 82 webhooks
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 70 events, 8 properties
📦 company: 89 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🔔 property_change: 34 events, 4 properties
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 174 webhooks
📦 company: 40 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 22 events, 5 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
69504
|
|
69508
|
1599
|
9
|
2026-04-22T08:14:26.769374+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845666769_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
📦 deal: 670 webhooks
🔔 property_change: 46 📦 deal: 670 webhooks
🔔 property_change: 469 events, 29 properties
🔔 association_change: 160 events, 0 properties
🔔 creation: 41 events, 0 properties
🏢 Config 766 (Marsello - 781) - 895 webhooks
📦 company: 312 webhooks
🔔 creation: 22 events, 0 properties
🔔 property_change: 87 events, 6 properties
🔔 association_change: 203 events, 0 properties
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
📦 deal: 20 webhooks
🔔 property_change: 16 events, 12 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🏢 Config 803 (E3 - 854) - 851 webhooks
📦 company: 139 webhooks
🔔 association_change: 134 events, 0 properties
🔔 property_change: 5 events, 4 properties
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
📦 deal: 159 webhooks
🔔 property_change: 104 events, 6 properties
🔔 association_change: 42 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 5009 webhooks
📦 company: 190 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 10 events, 0 properties
🔔 property_change: 134 events, 6 properties
📦 deal: 3962 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 3950 events, 21 properties
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 13362 webhooks
📦 company: 2775 webhooks
🔔 association_change: 1668 events, 0 properties
🔔 creation: 217 events, 0 properties
🔔 property_change: 890 events, 6 properties
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
📦 deal: 584 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 419 events, 0 properties
🔔 property_change: 153 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 1223 webhooks
📦 deal: 26 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 14 events, 3 properties
🔔 association_change: 9 events, 0 properties
📦 company: 457 webhooks
🔔 property_change: 447 events, 2 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks
📦 company: 614 webhooks
🔔 property_change: 175 events, 6 properties
🔔 creation: 15 events, 0 properties
🔔 association_change: 424 events, 0 properties
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
📦 deal: 9 webhooks
🔔 property_change: 8 events, 4 properties
🔔 association_change: 1 events, 0 properties
🏢 Config 880 (Immutable - 931) - 7898 webhooks
📦 deal: 27 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 4 events, 2 properties
🔔 association_change: 21 events, 0 properties
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
📦 company: 2284 webhooks
🔔 association_change: 1818 events, 0 properties
🔔 property_change: 308 events, 6 properties
🔔 creation: 158 events, 0 properties
🏢 Config 877 (GroWrk Remote - 927) - 342 webhooks
📦 company: 74 webhooks
🔔 property_change: 25 events, 6 properties
🔔 association_change: 44 events, 0 properties
🔔 creation: 5 events, 0 properties
📦 deal: 151 webhooks
🔔 property_change: 82 events, 11 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 11 events, 0 properties
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 871 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
📦 company: 299 webhooks
🔔 association_change: 188 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 93 events, 6 properties
📦 deal: 78 webhooks
🔔 property_change: 56 events, 9 properties
🔔 creation: 4 events, 0 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 547 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
📦 company: 40 webhooks
🔔 association_change: 30 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 3 properties
📦 deal: 42 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 25 events, 5 properties
🏢 Config 583 (One Core Media - 608) - 99 webhooks
📦 company: 32 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 463 webhooks
📦 company: 161 webhooks
🔔 association_change: 160 events, 0 properties
🔔 property_change: 1 events, 1 properties
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 deal: 147 webhooks
🔔 property_change: 69 events, 12 properties
🔔 association_change: 74 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 982 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
📦 company: 329 webhooks
🔔 property_change: 130 events, 4 properties
🔔 association_change: 154 events, 0 properties
🔔 creation: 45 events, 0 properties
📦 deal: 18 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 5 events, 2 properties
🏢 Config 270 (Heka Happy - 288) - 134 webhooks
📦 company: 34 webhooks
🔔 property_change: 13 events, 5 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 5 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 869 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
📦 deal: 266 webhooks
🔔 creation: 28 events, 0 properties
🔔 property_change: 153 events, 7 properties
🔔 association_change: 85 events, 0 properties
📦 company: 101 webhooks
🔔 association_change: 86 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 creation: 4 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 1101 webhooks
📦 deal: 190 webhooks
🔔 association_change: 57 events, 0 properties
🔔 property_change: 117 events, 8 properties
🔔 creation: 16 events, 0 properties
📦 company: 248 webhooks
🔔 association_change: 149 events, 0 properties
🔔 creation: 26 events, 0 properties
🔔 property_change: 73 events, 5 properties
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 225415 webhooks
📦 company: 35595 webhooks
🔔 property_change: 5687 events, 3 properties
🔔 association_change: 25219 events, 0 properties
🔔 creation: 4689 events, 0 properties
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
📦 deal: 113081 webhooks
🔔 creation: 7588 events, 0 properties
🔔 property_change: 82720 events, 9 properties
🔔 association_change: 22773 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 635 webhooks
📦 deal: 228 webhooks
🔔 property_change: 158 events, 9 properties
🔔 creation: 18 events, 0 properties
🔔 association_change: 52 events, 0 properties
📦 company: 142 webhooks
🔔 property_change: 59 events, 6 properties
🔔 association_change: 69 events, 0 properties
🔔 creation: 14 events, 0 properties
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 374 webhooks
📦 company: 64 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 15 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 118 webhooks
🔔 property_change: 78 events, 10 properties
🔔 association_change: 30 events, 0 properties
🔔 creation: 10 events, 0 properties
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 83 webhooks
📦 company: 11 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
📦 deal: 17 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🔔 property_change: 13 events, 6 properties
🏢 Config 1049 (Classavo - 851) - 24 webhooks
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 1 events, 0 properties
🏢 Config 290 (D1 Training - 308) - 898 webhooks
📦 company: 12 webhooks
🔔 property_change: 5 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 6 events, 0 properties
📦 deal: 480 webhooks
🔔 association_change: 40 events, 0 properties
🔔 creation: 35 events, 0 properties
🔔 property_change: 405 events, 8 properties
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 5388 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
📦 company: 1647 webhooks
🔔 association_change: 698 events, 0 properties
🔔 property_change: 637 events, 6 properties
🔔 creation: 312 events, 0 properties
📦 deal: 55 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 1231 webhooks
📦 company: 274 webhooks
🔔 property_change: 128 events, 6 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 120 events, 0 properties
📦 deal: 464 webhooks
🔔 creation: 16 events, 0 properties
🔔 property_change: 385 events, 23 properties
🔔 association_change: 63 events, 0 properties
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 3864 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
📦 company: 742 webhooks
🔔 association_change: 617 events, 0 properties
🔔 creation: 31 events, 0 properties
🔔 property_change: 94 events, 6 properties
📦 deal: 482 webhooks
🔔 association_change: 121 events, 0 properties
🔔 property_change: 338 events, 11 properties
🔔 creation: 23 events, 0 properties
🏢 Config 1053 (Sensi.AI - 1117) - 8574 webhooks
📦 company: 1694 webhooks
🔔 property_change: 156 events, 6 properties
🔔 creation: 39 events, 0 properties
🔔 association_change: 1499 events, 0 properties
📦 deal: 663 webhooks
🔔 property_change: 491 events, 15 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 74 events, 0 properties
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 2108 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
📦 deal: 39 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 23 events, 6 properties
📦 company: 330 webhooks
🔔 association_change: 298 events, 0 properties
🔔 property_change: 23 events, 5 properties
🔔 creation: 9 events, 0 properties
🏢 Config 518 (Prolific - 544) - 9399 webhooks
📦 deal: 26 webhooks
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
📦 company: 957 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 352 events, 0 properties
🔔 property_change: 575 events, 6 properties
🏢 Config 761 (Ressio Software - 770) - 4387 webhooks
📦 company: 2012 webhooks
🔔 property_change: 1370 events, 6 properties
🔔 creation: 207 events, 0 properties
🔔 association_change: 435 events, 0 properties
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
📦 deal: 255 webhooks
🔔 property_change: 119 events, 5 properties
🔔 creation: 17 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 874 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
📦 company: 64 webhooks
🔔 association_change: 36 events, 0 properties
🔔 property_change: 24 events, 6 properties
🔔 creation: 4 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
📦 deal: 280 webhooks
🔔 property_change: 225 events, 11 properties
🔔 creation: 14 events, 0 properties
🔔 association_change: 41 events, 0 properties
📦 company: 173 webhooks
🔔 property_change: 34 events, 3 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 130 events, 0 properties
🏢 Config 581 (Penfold - 606) - 1191 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
📦 company: 266 webhooks
🔔 creation: 21 events, 0 properties
🔔 property_change: 78 events, 6 properties
🔔 association_change: 167 events, 0 properties
📦 deal: 73 webhooks
🔔 association_change: 18 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 49 events, 7 properties
🏢 Config 1015 (Travefy - 1049) - 4021 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
📦 deal: 1468 webhooks
🔔 property_change: 1072 events, 10 properties
🔔 creation: 99 events, 0 properties
🔔 association_change: 297 events, 0 properties
📦 company: 924 webhooks
🔔 creation: 151 events, 0 properties
🔔 association_change: 510 events, 0 properties
🔔 property_change: 263 events, 2 properties
🏢 Config 413 (VCC - 347) - 56 webhooks
📦 deal: 11 webhooks
🔔 property_change: 10 events, 5 properties
🔔 association_change: 1 events, 0 properties
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 company: 30 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 18 events, 2 properties
🔔 creation: 9 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks
📦 company: 160 webhooks
🔔 property_change: 30 events, 3 properties
🔔 association_change: 122 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 34 webhooks
🔔 property_change: 34 events, 6 properties
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 243 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
📦 deal: 68 webhooks
🔔 creation: 5 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 47 events, 9 properties
📦 company: 42 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 12 events, 6 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 39 webhooks
📦 company: 13 webhooks
🔔 property_change: 5 events, 3 properties
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 163 webhooks
📦 company: 41 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 29 events, 0 properties
🔔 property_change: 11 events, 6 properties
📦 deal: 21 webhooks
🔔 property_change: 17 events, 6 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 580 webhooks
📦 deal: 255 webhooks
🔔 creation: 12 events, 0 properties
🔔 property_change: 204 events, 7 properties
🔔 association_change: 39 events, 0 properties
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
📦 company: 132 webhooks
🔔 property_change: 61 events, 6 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 300 (Prowly - 318) - 430 webhooks
📦 company: 102 webhooks
🔔 creation: 10 events, 0 properties
🔔 association_change: 66 events, 0 properties
🔔 property_change: 26 events, 6 properties
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
📦 deal: 126 webhooks
🔔 property_change: 80 events, 9 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 37 events, 0 properties
🏢 Config 265 (Orbital - 283) - 3300 webhooks
📦 deal: 255 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 207 events, 10 properties
🔔 association_change: 45 events, 0 properties
📦 company: 921 webhooks
🔔 property_change: 48 events, 6 properties
🔔 creation: 11 events, 0 properties
🔔 association_change: 862 events, 0 properties
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 1138 webhooks
📦 company: 141 webhooks
🔔 property_change: 35 events, 3 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 59 webhooks
🔔 creation: 11 events, 0 properties
🔔 association_change: 27 events, 0 properties
🔔 property_change: 21 events, 5 properties
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 70 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
📦 company: 16 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🔔 association_change: 10 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 3713 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
📦 deal: 1822 webhooks
🔔 creation: 18 events, 0 properties
🔔 association_change: 1278 events, 0 properties
🔔 property_change: 526 events, 7 properties
📦 company: 556 webhooks
🔔 association_change: 451 events, 0 properties
🔔 property_change: 68 events, 3 properties
🔔 creation: 37 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 67 webhooks
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 31 webhooks
🔔 association_change: 7 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 23 events, 7 properties
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 151 webhooks
📦 company: 35 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 8 events, 4 properties
🔔 association_change: 22 events, 0 properties
📦 deal: 1 webhooks
🔔 property_change: 1 events, 1 properties
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 4102 webhooks
📦 company: 1117 webhooks
🔔 creation: 92 events, 0 properties
🔔 association_change: 676 events, 0 properties
🔔 property_change: 349 events, 4 properties
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
📦 deal: 61 webhooks
🔔 property_change: 49 events, 13 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 97 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 20 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 3 properties
🔔 association_change: 14 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 2244 webhooks
📦 company: 297 webhooks
🔔 property_change: 104 events, 3 properties
🔔 association_change: 155 events, 0 properties
🔔 creation: 38 events, 0 properties
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
📦 deal: 430 webhooks
🔔 property_change: 285 events, 6 properties
🔔 creation: 40 events, 0 properties
🔔 association_change: 105 events, 0 properties
🏢 Config 339 (Rosterfy - 359) - 1274 webhooks
📦 deal: 86 webhooks
🔔 property_change: 69 events, 8 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 14 events, 0 properties
📦 company: 370 webhooks
🔔 creation: 33 events, 0 properties
🔔 property_change: 163 events, 6 properties
🔔 association_change: 174 events, 0 properties
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 344 webhooks
📦 deal: 82 webhooks
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 70 events, 8 properties
📦 company: 89 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🔔 property_change: 34 events, 4 properties
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 174 webhooks
📦 company: 40 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 22 events, 5 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"📦\u0000 deal: 670 webhooks\n 🔔\u0000 property_change: 469 events, 29 properties\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 creation: 41 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 895 webhooks\n 📦\u0000 company: 312 webhooks\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 6 properties\n 🔔\u0000 association_change: 203 events, 0 properties\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 property_change: 16 events, 12 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 851 webhooks\n 📦\u0000 company: 139 webhooks\n 🔔\u0000 association_change: 134 events, 0 properties\n 🔔\u0000 property_change: 5 events, 4 properties\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n 📦\u0000 deal: 159 webhooks\n 🔔\u0000 property_change: 104 events, 6 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 5009 webhooks\n 📦\u0000 company: 190 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 property_change: 134 events, 6 properties\n 📦\u0000 deal: 3962 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 3950 events, 21 properties\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 13362 webhooks\n 📦\u0000 company: 2775 webhooks\n 🔔\u0000 association_change: 1668 events, 0 properties\n 🔔\u0000 creation: 217 events, 0 properties\n 🔔\u0000 property_change: 890 events, 6 properties\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n 📦\u0000 deal: 584 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 419 events, 0 properties\n 🔔\u0000 property_change: 153 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 1223 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 3 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 company: 457 webhooks\n 🔔\u0000 property_change: 447 events, 2 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks\n 📦\u0000 company: 614 webhooks\n 🔔\u0000 property_change: 175 events, 6 properties\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 association_change: 424 events, 0 properties\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n 📦\u0000 deal: 9 webhooks\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 7898 webhooks\n 📦\u0000 deal: 27 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 4 events, 2 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n 📦\u0000 company: 2284 webhooks\n 🔔\u0000 association_change: 1818 events, 0 properties\n 🔔\u0000 property_change: 308 events, 6 properties\n 🔔\u0000 creation: 158 events, 0 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 342 webhooks\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 property_change: 25 events, 6 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 deal: 151 webhooks\n 🔔\u0000 property_change: 82 events, 11 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 871 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n 📦\u0000 company: 299 webhooks\n 🔔\u0000 association_change: 188 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 93 events, 6 properties\n 📦\u0000 deal: 78 webhooks\n 🔔\u0000 property_change: 56 events, 9 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 547 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 3 properties\n 📦\u0000 deal: 42 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 25 events, 5 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 99 webhooks\n 📦\u0000 company: 32 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 463 webhooks\n 📦\u0000 company: 161 webhooks\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 147 webhooks\n 🔔\u0000 property_change: 69 events, 12 properties\n 🔔\u0000 association_change: 74 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 982 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n 📦\u0000 company: 329 webhooks\n 🔔\u0000 property_change: 130 events, 4 properties\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 45 events, 0 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 5 events, 2 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 134 webhooks\n 📦\u0000 company: 34 webhooks\n 🔔\u0000 property_change: 13 events, 5 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 869 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n 📦\u0000 deal: 266 webhooks\n 🔔\u0000 creation: 28 events, 0 properties\n 🔔\u0000 property_change: 153 events, 7 properties\n 🔔\u0000 association_change: 85 events, 0 properties\n 📦\u0000 company: 101 webhooks\n 🔔\u0000 association_change: 86 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 1101 webhooks\n 📦\u0000 deal: 190 webhooks\n 🔔\u0000 association_change: 57 events, 0 properties\n 🔔\u0000 property_change: 117 events, 8 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 📦\u0000 company: 248 webhooks\n 🔔\u0000 association_change: 149 events, 0 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 property_change: 73 events, 5 properties\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 225415 webhooks\n 📦\u0000 company: 35595 webhooks\n 🔔\u0000 property_change: 5687 events, 3 properties\n 🔔\u0000 association_change: 25219 events, 0 properties\n 🔔\u0000 creation: 4689 events, 0 properties\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n 📦\u0000 deal: 113081 webhooks\n 🔔\u0000 creation: 7588 events, 0 properties\n 🔔\u0000 property_change: 82720 events, 9 properties\n 🔔\u0000 association_change: 22773 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 635 webhooks\n 📦\u0000 deal: 228 webhooks\n 🔔\u0000 property_change: 158 events, 9 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 52 events, 0 properties\n 📦\u0000 company: 142 webhooks\n 🔔\u0000 property_change: 59 events, 6 properties\n 🔔\u0000 association_change: 69 events, 0 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 374 webhooks\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 118 webhooks\n 🔔\u0000 property_change: 78 events, 10 properties\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 83 webhooks\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 deal: 17 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 13 events, 6 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 24 webhooks\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 898 webhooks\n 📦\u0000 company: 12 webhooks\n 🔔\u0000 property_change: 5 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 📦\u0000 deal: 480 webhooks\n 🔔\u0000 association_change: 40 events, 0 properties\n 🔔\u0000 creation: 35 events, 0 properties\n 🔔\u0000 property_change: 405 events, 8 properties\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 5388 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n 📦\u0000 company: 1647 webhooks\n 🔔\u0000 association_change: 698 events, 0 properties\n 🔔\u0000 property_change: 637 events, 6 properties\n 🔔\u0000 creation: 312 events, 0 properties\n 📦\u0000 deal: 55 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 1231 webhooks\n 📦\u0000 company: 274 webhooks\n 🔔\u0000 property_change: 128 events, 6 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 120 events, 0 properties\n 📦\u0000 deal: 464 webhooks\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 385 events, 23 properties\n 🔔\u0000 association_change: 63 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 3864 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n 📦\u0000 company: 742 webhooks\n 🔔\u0000 association_change: 617 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 🔔\u0000 property_change: 94 events, 6 properties\n 📦\u0000 deal: 482 webhooks\n 🔔\u0000 association_change: 121 events, 0 properties\n 🔔\u0000 property_change: 338 events, 11 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 8574 webhooks\n 📦\u0000 company: 1694 webhooks\n 🔔\u0000 property_change: 156 events, 6 properties\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 1499 events, 0 properties\n 📦\u0000 deal: 663 webhooks\n 🔔\u0000 property_change: 491 events, 15 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 74 events, 0 properties\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 2108 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n 📦\u0000 deal: 39 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 23 events, 6 properties\n 📦\u0000 company: 330 webhooks\n 🔔\u0000 association_change: 298 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 9399 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n 📦\u0000 company: 957 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 352 events, 0 properties\n 🔔\u0000 property_change: 575 events, 6 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 4387 webhooks\n 📦\u0000 company: 2012 webhooks\n 🔔\u0000 property_change: 1370 events, 6 properties\n 🔔\u0000 creation: 207 events, 0 properties\n 🔔\u0000 association_change: 435 events, 0 properties\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 property_change: 119 events, 5 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 874 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 association_change: 36 events, 0 properties\n 🔔\u0000 property_change: 24 events, 6 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n 📦\u0000 deal: 280 webhooks\n 🔔\u0000 property_change: 225 events, 11 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 🔔\u0000 association_change: 41 events, 0 properties\n 📦\u0000 company: 173 webhooks\n 🔔\u0000 property_change: 34 events, 3 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 130 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 1191 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n 📦\u0000 company: 266 webhooks\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 78 events, 6 properties\n 🔔\u0000 association_change: 167 events, 0 properties\n 📦\u0000 deal: 73 webhooks\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 49 events, 7 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 4021 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n 📦\u0000 deal: 1468 webhooks\n 🔔\u0000 property_change: 1072 events, 10 properties\n 🔔\u0000 creation: 99 events, 0 properties\n 🔔\u0000 association_change: 297 events, 0 properties\n 📦\u0000 company: 924 webhooks\n 🔔\u0000 creation: 151 events, 0 properties\n 🔔\u0000 association_change: 510 events, 0 properties\n 🔔\u0000 property_change: 263 events, 2 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 56 webhooks\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 10 events, 5 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 30 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 18 events, 2 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks\n 📦\u0000 company: 160 webhooks\n 🔔\u0000 property_change: 30 events, 3 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 34 webhooks\n 🔔\u0000 property_change: 34 events, 6 properties\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 243 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 📦\u0000 deal: 68 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 47 events, 9 properties\n 📦\u0000 company: 42 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 12 events, 6 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 39 webhooks\n 📦\u0000 company: 13 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 163 webhooks\n 📦\u0000 company: 41 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 property_change: 11 events, 6 properties\n 📦\u0000 deal: 21 webhooks\n 🔔\u0000 property_change: 17 events, 6 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 580 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 property_change: 204 events, 7 properties\n 🔔\u0000 association_change: 39 events, 0 properties\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 132 webhooks\n 🔔\u0000 property_change: 61 events, 6 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 430 webhooks\n 📦\u0000 company: 102 webhooks\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 66 events, 0 properties\n 🔔\u0000 property_change: 26 events, 6 properties\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n 📦\u0000 deal: 126 webhooks\n 🔔\u0000 property_change: 80 events, 9 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 37 events, 0 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 3300 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 207 events, 10 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 921 webhooks\n 🔔\u0000 property_change: 48 events, 6 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 862 events, 0 properties\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 1138 webhooks\n 📦\u0000 company: 141 webhooks\n 🔔\u0000 property_change: 35 events, 3 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 59 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 property_change: 21 events, 5 properties\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 70 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 16 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 3713 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n 📦\u0000 deal: 1822 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 1278 events, 0 properties\n 🔔\u0000 property_change: 526 events, 7 properties\n 📦\u0000 company: 556 webhooks\n 🔔\u0000 association_change: 451 events, 0 properties\n 🔔\u0000 property_change: 68 events, 3 properties\n 🔔\u0000 creation: 37 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 67 webhooks\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 31 webhooks\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 23 events, 7 properties\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 151 webhooks\n 📦\u0000 company: 35 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 deal: 1 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 4102 webhooks\n 📦\u0000 company: 1117 webhooks\n 🔔\u0000 creation: 92 events, 0 properties\n 🔔\u0000 association_change: 676 events, 0 properties\n 🔔\u0000 property_change: 349 events, 4 properties\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n 📦\u0000 deal: 61 webhooks\n 🔔\u0000 property_change: 49 events, 13 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 97 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 2244 webhooks\n 📦\u0000 company: 297 webhooks\n 🔔\u0000 property_change: 104 events, 3 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n 🔔\u0000 creation: 38 events, 0 properties\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n 📦\u0000 deal: 430 webhooks\n 🔔\u0000 property_change: 285 events, 6 properties\n 🔔\u0000 creation: 40 events, 0 properties\n 🔔\u0000 association_change: 105 events, 0 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 1274 webhooks\n 📦\u0000 deal: 86 webhooks\n 🔔\u0000 property_change: 69 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n 📦\u0000 company: 370 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 163 events, 6 properties\n 🔔\u0000 association_change: 174 events, 0 properties\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 344 webhooks\n 📦\u0000 deal: 82 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 70 events, 8 properties\n 📦\u0000 company: 89 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 34 events, 4 properties\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 174 webhooks\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 22 events, 5 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.4787234,"height":-0.06304872},"value":"📦\u0000 deal: 670 webhooks\n 🔔\u0000 property_change: 469 events, 29 properties\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 creation: 41 events, 0 properties\n\n🏢\u0000 Config 766 (Marsello - 781) - 895 webhooks\n 📦\u0000 company: 312 webhooks\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 6 properties\n 🔔\u0000 association_change: 203 events, 0 properties\n 📦\u0000 contact: 563 webhooks\n 🔔\u0000 property_change: 337 events, 9 properties\n 🔔\u0000 creation: 24 events, 0 properties\n 🔔\u0000 association_change: 202 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 property_change: 16 events, 12 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n\n🏢\u0000 Config 803 (E3 - 854) - 851 webhooks\n 📦\u0000 company: 139 webhooks\n 🔔\u0000 association_change: 134 events, 0 properties\n 🔔\u0000 property_change: 5 events, 4 properties\n 📦\u0000 contact: 553 webhooks\n 🔔\u0000 property_change: 367 events, 9 properties\n 🔔\u0000 creation: 62 events, 0 properties\n 🔔\u0000 association_change: 124 events, 0 properties\n 📦\u0000 deal: 159 webhooks\n 🔔\u0000 property_change: 104 events, 6 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 944 (OneCrew - 1018) - 5009 webhooks\n 📦\u0000 company: 190 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 property_change: 134 events, 6 properties\n 📦\u0000 deal: 3962 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 3950 events, 21 properties\n 📦\u0000 contact: 857 webhooks\n 🔔\u0000 creation: 87 events, 0 properties\n 🔔\u0000 property_change: 727 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n\n🏢\u0000 Config 896 (Mintago - 946) - 13362 webhooks\n 📦\u0000 company: 2775 webhooks\n 🔔\u0000 association_change: 1668 events, 0 properties\n 🔔\u0000 creation: 217 events, 0 properties\n 🔔\u0000 property_change: 890 events, 6 properties\n 📦\u0000 contact: 10003 webhooks\n 🔔\u0000 creation: 984 events, 0 properties\n 🔔\u0000 association_change: 2039 events, 0 properties\n 🔔\u0000 property_change: 6980 events, 9 properties\n 📦\u0000 deal: 584 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 419 events, 0 properties\n 🔔\u0000 property_change: 153 events, 9 properties\n\n🏢\u0000 Config 908 (JPA Workspaces - 956) - 1223 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 3 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 company: 457 webhooks\n 🔔\u0000 property_change: 447 events, 2 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks\n 📦\u0000 company: 614 webhooks\n 🔔\u0000 property_change: 175 events, 6 properties\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 association_change: 424 events, 0 properties\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n 📦\u0000 deal: 9 webhooks\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 7898 webhooks\n 📦\u0000 deal: 27 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 4 events, 2 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n 📦\u0000 company: 2284 webhooks\n 🔔\u0000 association_change: 1818 events, 0 properties\n 🔔\u0000 property_change: 308 events, 6 properties\n 🔔\u0000 creation: 158 events, 0 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 342 webhooks\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 property_change: 25 events, 6 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 deal: 151 webhooks\n 🔔\u0000 property_change: 82 events, 11 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 871 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n 📦\u0000 company: 299 webhooks\n 🔔\u0000 association_change: 188 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 93 events, 6 properties\n 📦\u0000 deal: 78 webhooks\n 🔔\u0000 property_change: 56 events, 9 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 547 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 3 properties\n 📦\u0000 deal: 42 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 25 events, 5 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 99 webhooks\n 📦\u0000 company: 32 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 463 webhooks\n 📦\u0000 company: 161 webhooks\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 147 webhooks\n 🔔\u0000 property_change: 69 events, 12 properties\n 🔔\u0000 association_change: 74 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 982 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n 📦\u0000 company: 329 webhooks\n 🔔\u0000 property_change: 130 events, 4 properties\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 45 events, 0 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 5 events, 2 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 134 webhooks\n 📦\u0000 company: 34 webhooks\n 🔔\u0000 property_change: 13 events, 5 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 869 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n 📦\u0000 deal: 266 webhooks\n 🔔\u0000 creation: 28 events, 0 properties\n 🔔\u0000 property_change: 153 events, 7 properties\n 🔔\u0000 association_change: 85 events, 0 properties\n 📦\u0000 company: 101 webhooks\n 🔔\u0000 association_change: 86 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 1101 webhooks\n 📦\u0000 deal: 190 webhooks\n 🔔\u0000 association_change: 57 events, 0 properties\n 🔔\u0000 property_change: 117 events, 8 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 📦\u0000 company: 248 webhooks\n 🔔\u0000 association_change: 149 events, 0 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 property_change: 73 events, 5 properties\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 225415 webhooks\n 📦\u0000 company: 35595 webhooks\n 🔔\u0000 property_change: 5687 events, 3 properties\n 🔔\u0000 association_change: 25219 events, 0 properties\n 🔔\u0000 creation: 4689 events, 0 properties\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n 📦\u0000 deal: 113081 webhooks\n 🔔\u0000 creation: 7588 events, 0 properties\n 🔔\u0000 property_change: 82720 events, 9 properties\n 🔔\u0000 association_change: 22773 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 635 webhooks\n 📦\u0000 deal: 228 webhooks\n 🔔\u0000 property_change: 158 events, 9 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 52 events, 0 properties\n 📦\u0000 company: 142 webhooks\n 🔔\u0000 property_change: 59 events, 6 properties\n 🔔\u0000 association_change: 69 events, 0 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 374 webhooks\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 118 webhooks\n 🔔\u0000 property_change: 78 events, 10 properties\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 83 webhooks\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 deal: 17 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 13 events, 6 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 24 webhooks\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 898 webhooks\n 📦\u0000 company: 12 webhooks\n 🔔\u0000 property_change: 5 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 📦\u0000 deal: 480 webhooks\n 🔔\u0000 association_change: 40 events, 0 properties\n 🔔\u0000 creation: 35 events, 0 properties\n 🔔\u0000 property_change: 405 events, 8 properties\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 5388 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n 📦\u0000 company: 1647 webhooks\n 🔔\u0000 association_change: 698 events, 0 properties\n 🔔\u0000 property_change: 637 events, 6 properties\n 🔔\u0000 creation: 312 events, 0 properties\n 📦\u0000 deal: 55 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 1231 webhooks\n 📦\u0000 company: 274 webhooks\n 🔔\u0000 property_change: 128 events, 6 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 120 events, 0 properties\n 📦\u0000 deal: 464 webhooks\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 385 events, 23 properties\n 🔔\u0000 association_change: 63 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 3864 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n 📦\u0000 company: 742 webhooks\n 🔔\u0000 association_change: 617 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 🔔\u0000 property_change: 94 events, 6 properties\n 📦\u0000 deal: 482 webhooks\n 🔔\u0000 association_change: 121 events, 0 properties\n 🔔\u0000 property_change: 338 events, 11 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 8574 webhooks\n 📦\u0000 company: 1694 webhooks\n 🔔\u0000 property_change: 156 events, 6 properties\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 1499 events, 0 properties\n 📦\u0000 deal: 663 webhooks\n 🔔\u0000 property_change: 491 events, 15 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 74 events, 0 properties\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 2108 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n 📦\u0000 deal: 39 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 23 events, 6 properties\n 📦\u0000 company: 330 webhooks\n 🔔\u0000 association_change: 298 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 9399 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n 📦\u0000 company: 957 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 352 events, 0 properties\n 🔔\u0000 property_change: 575 events, 6 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 4387 webhooks\n 📦\u0000 company: 2012 webhooks\n 🔔\u0000 property_change: 1370 events, 6 properties\n 🔔\u0000 creation: 207 events, 0 properties\n 🔔\u0000 association_change: 435 events, 0 properties\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 property_change: 119 events, 5 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 874 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 association_change: 36 events, 0 properties\n 🔔\u0000 property_change: 24 events, 6 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n 📦\u0000 deal: 280 webhooks\n 🔔\u0000 property_change: 225 events, 11 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 🔔\u0000 association_change: 41 events, 0 properties\n 📦\u0000 company: 173 webhooks\n 🔔\u0000 property_change: 34 events, 3 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 130 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 1191 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n 📦\u0000 company: 266 webhooks\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 78 events, 6 properties\n 🔔\u0000 association_change: 167 events, 0 properties\n 📦\u0000 deal: 73 webhooks\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 49 events, 7 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 4021 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n 📦\u0000 deal: 1468 webhooks\n 🔔\u0000 property_change: 1072 events, 10 properties\n 🔔\u0000 creation: 99 events, 0 properties\n 🔔\u0000 association_change: 297 events, 0 properties\n 📦\u0000 company: 924 webhooks\n 🔔\u0000 creation: 151 events, 0 properties\n 🔔\u0000 association_change: 510 events, 0 properties\n 🔔\u0000 property_change: 263 events, 2 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 56 webhooks\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 10 events, 5 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 30 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 18 events, 2 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks\n 📦\u0000 company: 160 webhooks\n 🔔\u0000 property_change: 30 events, 3 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 34 webhooks\n 🔔\u0000 property_change: 34 events, 6 properties\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 243 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 📦\u0000 deal: 68 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 47 events, 9 properties\n 📦\u0000 company: 42 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 12 events, 6 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 39 webhooks\n 📦\u0000 company: 13 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 163 webhooks\n 📦\u0000 company: 41 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 property_change: 11 events, 6 properties\n 📦\u0000 deal: 21 webhooks\n 🔔\u0000 property_change: 17 events, 6 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 580 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 property_change: 204 events, 7 properties\n 🔔\u0000 association_change: 39 events, 0 properties\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 132 webhooks\n 🔔\u0000 property_change: 61 events, 6 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 430 webhooks\n 📦\u0000 company: 102 webhooks\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 66 events, 0 properties\n 🔔\u0000 property_change: 26 events, 6 properties\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n 📦\u0000 deal: 126 webhooks\n 🔔\u0000 property_change: 80 events, 9 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 37 events, 0 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 3300 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 207 events, 10 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 921 webhooks\n 🔔\u0000 property_change: 48 events, 6 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 862 events, 0 properties\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 1138 webhooks\n 📦\u0000 company: 141 webhooks\n 🔔\u0000 property_change: 35 events, 3 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 59 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 property_change: 21 events, 5 properties\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 70 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 16 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 3713 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n 📦\u0000 deal: 1822 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 1278 events, 0 properties\n 🔔\u0000 property_change: 526 events, 7 properties\n 📦\u0000 company: 556 webhooks\n 🔔\u0000 association_change: 451 events, 0 properties\n 🔔\u0000 property_change: 68 events, 3 properties\n 🔔\u0000 creation: 37 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 67 webhooks\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 31 webhooks\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 23 events, 7 properties\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 151 webhooks\n 📦\u0000 company: 35 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 deal: 1 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 4102 webhooks\n 📦\u0000 company: 1117 webhooks\n 🔔\u0000 creation: 92 events, 0 properties\n 🔔\u0000 association_change: 676 events, 0 properties\n 🔔\u0000 property_change: 349 events, 4 properties\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n 📦\u0000 deal: 61 webhooks\n 🔔\u0000 property_change: 49 events, 13 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 97 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 2244 webhooks\n 📦\u0000 company: 297 webhooks\n 🔔\u0000 property_change: 104 events, 3 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n 🔔\u0000 creation: 38 events, 0 properties\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n 📦\u0000 deal: 430 webhooks\n 🔔\u0000 property_change: 285 events, 6 properties\n 🔔\u0000 creation: 40 events, 0 properties\n 🔔\u0000 association_change: 105 events, 0 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 1274 webhooks\n 📦\u0000 deal: 86 webhooks\n 🔔\u0000 property_change: 69 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n 📦\u0000 company: 370 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 163 events, 6 properties\n 🔔\u0000 association_change: 174 events, 0 properties\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 344 webhooks\n 📦\u0000 deal: 82 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 70 events, 8 properties\n 📦\u0000 company: 89 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 34 events, 4 properties\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 174 webhooks\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 22 events, 5 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
6209721463328613401
|
-5421059355093915696
|
idle
|
accessibility
|
NULL
|
📦 deal: 670 webhooks
🔔 property_change: 46 📦 deal: 670 webhooks
🔔 property_change: 469 events, 29 properties
🔔 association_change: 160 events, 0 properties
🔔 creation: 41 events, 0 properties
🏢 Config 766 (Marsello - 781) - 895 webhooks
📦 company: 312 webhooks
🔔 creation: 22 events, 0 properties
🔔 property_change: 87 events, 6 properties
🔔 association_change: 203 events, 0 properties
📦 contact: 563 webhooks
🔔 property_change: 337 events, 9 properties
🔔 creation: 24 events, 0 properties
🔔 association_change: 202 events, 0 properties
📦 deal: 20 webhooks
🔔 property_change: 16 events, 12 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🏢 Config 803 (E3 - 854) - 851 webhooks
📦 company: 139 webhooks
🔔 association_change: 134 events, 0 properties
🔔 property_change: 5 events, 4 properties
📦 contact: 553 webhooks
🔔 property_change: 367 events, 9 properties
🔔 creation: 62 events, 0 properties
🔔 association_change: 124 events, 0 properties
📦 deal: 159 webhooks
🔔 property_change: 104 events, 6 properties
🔔 association_change: 42 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 944 (OneCrew - 1018) - 5009 webhooks
📦 company: 190 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 10 events, 0 properties
🔔 property_change: 134 events, 6 properties
📦 deal: 3962 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 3950 events, 21 properties
📦 contact: 857 webhooks
🔔 creation: 87 events, 0 properties
🔔 property_change: 727 events, 9 properties
🔔 association_change: 43 events, 0 properties
🏢 Config 896 (Mintago - 946) - 13362 webhooks
📦 company: 2775 webhooks
🔔 association_change: 1668 events, 0 properties
🔔 creation: 217 events, 0 properties
🔔 property_change: 890 events, 6 properties
📦 contact: 10003 webhooks
🔔 creation: 984 events, 0 properties
🔔 association_change: 2039 events, 0 properties
🔔 property_change: 6980 events, 9 properties
📦 deal: 584 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 419 events, 0 properties
🔔 property_change: 153 events, 9 properties
🏢 Config 908 (JPA Workspaces - 956) - 1223 webhooks
📦 deal: 26 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 14 events, 3 properties
🔔 association_change: 9 events, 0 properties
📦 company: 457 webhooks
🔔 property_change: 447 events, 2 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks
📦 company: 614 webhooks
🔔 property_change: 175 events, 6 properties
🔔 creation: 15 events, 0 properties
🔔 association_change: 424 events, 0 properties
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
📦 deal: 9 webhooks
🔔 property_change: 8 events, 4 properties
🔔 association_change: 1 events, 0 properties
🏢 Config 880 (Immutable - 931) - 7898 webhooks
📦 deal: 27 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 4 events, 2 properties
🔔 association_change: 21 events, 0 properties
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
📦 company: 2284 webhooks
🔔 association_change: 1818 events, 0 properties
🔔 property_change: 308 events, 6 properties
🔔 creation: 158 events, 0 properties
🏢 Config 877 (GroWrk Remote - 927) - 342 webhooks
📦 company: 74 webhooks
🔔 property_change: 25 events, 6 properties
🔔 association_change: 44 events, 0 properties
🔔 creation: 5 events, 0 properties
📦 deal: 151 webhooks
🔔 property_change: 82 events, 11 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 11 events, 0 properties
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 871 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
📦 company: 299 webhooks
🔔 association_change: 188 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 93 events, 6 properties
📦 deal: 78 webhooks
🔔 property_change: 56 events, 9 properties
🔔 creation: 4 events, 0 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 547 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
📦 company: 40 webhooks
🔔 association_change: 30 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 3 properties
📦 deal: 42 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 25 events, 5 properties
🏢 Config 583 (One Core Media - 608) - 99 webhooks
📦 company: 32 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 463 webhooks
📦 company: 161 webhooks
🔔 association_change: 160 events, 0 properties
🔔 property_change: 1 events, 1 properties
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 deal: 147 webhooks
🔔 property_change: 69 events, 12 properties
🔔 association_change: 74 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 982 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
📦 company: 329 webhooks
🔔 property_change: 130 events, 4 properties
🔔 association_change: 154 events, 0 properties
🔔 creation: 45 events, 0 properties
📦 deal: 18 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 5 events, 2 properties
🏢 Config 270 (Heka Happy - 288) - 134 webhooks
📦 company: 34 webhooks
🔔 property_change: 13 events, 5 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 5 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 869 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
📦 deal: 266 webhooks
🔔 creation: 28 events, 0 properties
🔔 property_change: 153 events, 7 properties
🔔 association_change: 85 events, 0 properties
📦 company: 101 webhooks
🔔 association_change: 86 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 creation: 4 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 1101 webhooks
📦 deal: 190 webhooks
🔔 association_change: 57 events, 0 properties
🔔 property_change: 117 events, 8 properties
🔔 creation: 16 events, 0 properties
📦 company: 248 webhooks
🔔 association_change: 149 events, 0 properties
🔔 creation: 26 events, 0 properties
🔔 property_change: 73 events, 5 properties
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 225415 webhooks
📦 company: 35595 webhooks
🔔 property_change: 5687 events, 3 properties
🔔 association_change: 25219 events, 0 properties
🔔 creation: 4689 events, 0 properties
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
📦 deal: 113081 webhooks
🔔 creation: 7588 events, 0 properties
🔔 property_change: 82720 events, 9 properties
🔔 association_change: 22773 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 635 webhooks
📦 deal: 228 webhooks
🔔 property_change: 158 events, 9 properties
🔔 creation: 18 events, 0 properties
🔔 association_change: 52 events, 0 properties
📦 company: 142 webhooks
🔔 property_change: 59 events, 6 properties
🔔 association_change: 69 events, 0 properties
🔔 creation: 14 events, 0 properties
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 374 webhooks
📦 company: 64 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 15 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 118 webhooks
🔔 property_change: 78 events, 10 properties
🔔 association_change: 30 events, 0 properties
🔔 creation: 10 events, 0 properties
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 83 webhooks
📦 company: 11 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
📦 deal: 17 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🔔 property_change: 13 events, 6 properties
🏢 Config 1049 (Classavo - 851) - 24 webhooks
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 1 events, 0 properties
🏢 Config 290 (D1 Training - 308) - 898 webhooks
📦 company: 12 webhooks
🔔 property_change: 5 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 6 events, 0 properties
📦 deal: 480 webhooks
🔔 association_change: 40 events, 0 properties
🔔 creation: 35 events, 0 properties
🔔 property_change: 405 events, 8 properties
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 5388 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
📦 company: 1647 webhooks
🔔 association_change: 698 events, 0 properties
🔔 property_change: 637 events, 6 properties
🔔 creation: 312 events, 0 properties
📦 deal: 55 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 1231 webhooks
📦 company: 274 webhooks
🔔 property_change: 128 events, 6 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 120 events, 0 properties
📦 deal: 464 webhooks
🔔 creation: 16 events, 0 properties
🔔 property_change: 385 events, 23 properties
🔔 association_change: 63 events, 0 properties
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 3864 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
📦 company: 742 webhooks
🔔 association_change: 617 events, 0 properties
🔔 creation: 31 events, 0 properties
🔔 property_change: 94 events, 6 properties
📦 deal: 482 webhooks
🔔 association_change: 121 events, 0 properties
🔔 property_change: 338 events, 11 properties
🔔 creation: 23 events, 0 properties
🏢 Config 1053 (Sensi.AI - 1117) - 8574 webhooks
📦 company: 1694 webhooks
🔔 property_change: 156 events, 6 properties
🔔 creation: 39 events, 0 properties
🔔 association_change: 1499 events, 0 properties
📦 deal: 663 webhooks
🔔 property_change: 491 events, 15 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 74 events, 0 properties
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 2108 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
📦 deal: 39 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 23 events, 6 properties
📦 company: 330 webhooks
🔔 association_change: 298 events, 0 properties
🔔 property_change: 23 events, 5 properties
🔔 creation: 9 events, 0 properties
🏢 Config 518 (Prolific - 544) - 9399 webhooks
📦 deal: 26 webhooks
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
📦 company: 957 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 352 events, 0 properties
🔔 property_change: 575 events, 6 properties
🏢 Config 761 (Ressio Software - 770) - 4387 webhooks
📦 company: 2012 webhooks
🔔 property_change: 1370 events, 6 properties
🔔 creation: 207 events, 0 properties
🔔 association_change: 435 events, 0 properties
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
📦 deal: 255 webhooks
🔔 property_change: 119 events, 5 properties
🔔 creation: 17 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 874 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
📦 company: 64 webhooks
🔔 association_change: 36 events, 0 properties
🔔 property_change: 24 events, 6 properties
🔔 creation: 4 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
📦 deal: 280 webhooks
🔔 property_change: 225 events, 11 properties
🔔 creation: 14 events, 0 properties
🔔 association_change: 41 events, 0 properties
📦 company: 173 webhooks
🔔 property_change: 34 events, 3 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 130 events, 0 properties
🏢 Config 581 (Penfold - 606) - 1191 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
📦 company: 266 webhooks
🔔 creation: 21 events, 0 properties
🔔 property_change: 78 events, 6 properties
🔔 association_change: 167 events, 0 properties
📦 deal: 73 webhooks
🔔 association_change: 18 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 49 events, 7 properties
🏢 Config 1015 (Travefy - 1049) - 4021 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
📦 deal: 1468 webhooks
🔔 property_change: 1072 events, 10 properties
🔔 creation: 99 events, 0 properties
🔔 association_change: 297 events, 0 properties
📦 company: 924 webhooks
🔔 creation: 151 events, 0 properties
🔔 association_change: 510 events, 0 properties
🔔 property_change: 263 events, 2 properties
🏢 Config 413 (VCC - 347) - 56 webhooks
📦 deal: 11 webhooks
🔔 property_change: 10 events, 5 properties
🔔 association_change: 1 events, 0 properties
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 company: 30 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 18 events, 2 properties
🔔 creation: 9 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks
📦 company: 160 webhooks
🔔 property_change: 30 events, 3 properties
🔔 association_change: 122 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 34 webhooks
🔔 property_change: 34 events, 6 properties
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 243 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
📦 deal: 68 webhooks
🔔 creation: 5 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 47 events, 9 properties
📦 company: 42 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 12 events, 6 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 39 webhooks
📦 company: 13 webhooks
🔔 property_change: 5 events, 3 properties
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 163 webhooks
📦 company: 41 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 29 events, 0 properties
🔔 property_change: 11 events, 6 properties
📦 deal: 21 webhooks
🔔 property_change: 17 events, 6 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 580 webhooks
📦 deal: 255 webhooks
🔔 creation: 12 events, 0 properties
🔔 property_change: 204 events, 7 properties
🔔 association_change: 39 events, 0 properties
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
📦 company: 132 webhooks
🔔 property_change: 61 events, 6 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 300 (Prowly - 318) - 430 webhooks
📦 company: 102 webhooks
🔔 creation: 10 events, 0 properties
🔔 association_change: 66 events, 0 properties
🔔 property_change: 26 events, 6 properties
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
📦 deal: 126 webhooks
🔔 property_change: 80 events, 9 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 37 events, 0 properties
🏢 Config 265 (Orbital - 283) - 3300 webhooks
📦 deal: 255 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 207 events, 10 properties
🔔 association_change: 45 events, 0 properties
📦 company: 921 webhooks
🔔 property_change: 48 events, 6 properties
🔔 creation: 11 events, 0 properties
🔔 association_change: 862 events, 0 properties
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 1138 webhooks
📦 company: 141 webhooks
🔔 property_change: 35 events, 3 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 59 webhooks
🔔 creation: 11 events, 0 properties
🔔 association_change: 27 events, 0 properties
🔔 property_change: 21 events, 5 properties
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 70 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
📦 company: 16 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🔔 association_change: 10 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 3713 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
📦 deal: 1822 webhooks
🔔 creation: 18 events, 0 properties
🔔 association_change: 1278 events, 0 properties
🔔 property_change: 526 events, 7 properties
📦 company: 556 webhooks
🔔 association_change: 451 events, 0 properties
🔔 property_change: 68 events, 3 properties
🔔 creation: 37 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 67 webhooks
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 31 webhooks
🔔 association_change: 7 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 23 events, 7 properties
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 151 webhooks
📦 company: 35 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 8 events, 4 properties
🔔 association_change: 22 events, 0 properties
📦 deal: 1 webhooks
🔔 property_change: 1 events, 1 properties
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 4102 webhooks
📦 company: 1117 webhooks
🔔 creation: 92 events, 0 properties
🔔 association_change: 676 events, 0 properties
🔔 property_change: 349 events, 4 properties
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
📦 deal: 61 webhooks
🔔 property_change: 49 events, 13 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 97 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 20 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 3 properties
🔔 association_change: 14 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 2244 webhooks
📦 company: 297 webhooks
🔔 property_change: 104 events, 3 properties
🔔 association_change: 155 events, 0 properties
🔔 creation: 38 events, 0 properties
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
📦 deal: 430 webhooks
🔔 property_change: 285 events, 6 properties
🔔 creation: 40 events, 0 properties
🔔 association_change: 105 events, 0 properties
🏢 Config 339 (Rosterfy - 359) - 1274 webhooks
📦 deal: 86 webhooks
🔔 property_change: 69 events, 8 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 14 events, 0 properties
📦 company: 370 webhooks
🔔 creation: 33 events, 0 properties
🔔 property_change: 163 events, 6 properties
🔔 association_change: 174 events, 0 properties
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 344 webhooks
📦 deal: 82 webhooks
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 70 events, 8 properties
📦 company: 89 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🔔 property_change: 34 events, 4 properties
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 174 webhooks
📦 company: 40 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 22 events, 5 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69495
|
1598
|
0
|
2026-04-22T08:12:13.719080+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845533719_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
📦 Object Type: company
🔔 Event: property_c 📦 Object Type: company
🔔 Event: property_change
Count: 5
Properties:
📝 hubspot_owner_id: 1 changes
📝 name: 3 changes
📝 country: 1 changes
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 921 (Matrak - 968), Date 2026-04-16.
📊 Webhook Metrics for Config 921 (Matrak - 968)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 17
Properties:
📝 hubspot_owner_id: 6 changes
📝 email: 3 changes
📝 associatedcompanyid: 4 changes
📝 phone: 1 changes
📝 jobtitle: 1 changes
📝 lastname: 1 changes
📝 firstname: 1 changes
🔔 Event: creation
Count: 3
🔔 Event: association_change
Count: 8
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 2
Properties:
📝 name: 1 changes
📝 domain: 1 changes
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: property_change
Count: 5
Properties:
📝 hubspot_owner_id: 4 changes
📝 amount: 1 changes
INFO Looking for metrics: Config 1054 (Temelio - 1118), Date 2026-04-16.
📊 Webhook Metrics for Config 1054 (Temelio - 1118)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 80
Properties:
📝 hs_next_step: 2 changes
📝 dealstage: 15 changes
📝 hs_manual_forecast_category: 12 changes
📝 hubspot_owner_id: 1 changes
📝 amount: 2 changes
📝 closedate: 35 changes
📝 hs_deal_stage_probability: 13 changes
🔔 Event: association_change
Count: 85
📦 Object Type: contact
🔔 Event: association_change
Count: 7838
🔔 Event: property_change
Count: 1938
Properties:
📝 associatedcompanyid: 1828 changes
📝 phone: 5 changes
📝 lastname: 6 changes
📝 email: 9 changes
📝 jobtitle: 7 changes
📝 firstname: 7 changes
📝 hubspot_owner_id: 76 changes
🔔 Event: creation
Count: 15
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 1609
Properties:
📝 domain: 72 changes
📝 name: 6 changes
📝 hubspot_owner_id: 1047 changes
📝 phone: 431 changes
📝 country: 7 changes
📝 industry: 46 changes
🔔 Event: association_change
Count: 7911
INFO Looking for metrics: Config 1060 (Velatir - 1122), Date 2026-04-16.
📊 Webhook Metrics for Config 1060 (Velatir - 1122)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 205
Properties:
📝 email: 49 changes
📝 hubspot_owner_id: 64 changes
📝 firstname: 15 changes
📝 lastname: 14 changes
📝 associatedcompanyid: 50 changes
📝 phone: 5 changes
📝 jobtitle: 5 changes
📝 country: 3 changes
🔔 Event: creation
Count: 50
🔔 Event: association_change
Count: 114
📦 Object Type: company
🔔 Event: creation
Count: 21
🔔 Event: property_change
Count: 496
Properties:
📝 phone: 198 changes
📝 domain: 24 changes
📝 country: 18 changes
📝 name: 18 changes
📝 industry: 13 changes
📝 hubspot_owner_id: 225 changes
🔔 Event: association_change
Count: 126
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 55
Properties:
📝 hs_deal_stage_probability: 18 changes
📝 deal_currency_code: 8 changes
📝 amount: 10 changes
📝 hubspot_owner_id: 6 changes
📝 dealtype: 3 changes
📝 dealname: 4 changes
📝 dealstage: 6 changes
🔔 Event: association_change
Count: 36
INFO Looking for metrics: Config 272 (Bonham & Brook - 290), Date 2026-04-16.
📊 Webhook Metrics for Config 272 (Bonham & Brook - 290)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 33
🔔 Event: association_change
Count: 212
🔔 Event: property_change
Count: 221
Properties:
📝 hubspot_owner_id: 58 changes
📝 country: 33 changes
📝 name: 36 changes
📝 domain: 33 changes
📝 phone: 34 changes
📝 industry: 27 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 571
Properties:
📝 notes_last_updated: 323 changes
📝 notes_last_contacted: 193 changes
📝 hs_deal_stage_probability: 21 changes
📝 dealstage: 13 changes
📝 amount: 8 changes
📝 dealname: 8 changes
📝 hs_manual_forecast_category: 3 changes
📝 closedate: 1 changes
📝 pipeline: 1 changes
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 31
📦 Object Type: contact
🔔 Event: property_change
Count: 580
Properties:
📝 country: 42 changes
📝 mobilephone: 25 changes
📝 jobtitle: 66 changes
📝 phone: 69 changes
📝 email: 70 changes
📝 hubspot_owner_id: 100 changes
📝 firstname: 66 changes
📝 lastname: 65 changes
📝 associatedcompanyid: 77 changes
🔔 Event: association_change
Count: 195
🔔 Event: creation
Count: 71
INFO Looking for metrics: Config 989 (rtaoutdoor.com - 1058), Date 2026-04-16.
📊 Webhook Metrics for Config 989 (rtaoutdoor.com - 1058)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 413
🔔 Event: association_change
Count: 235
🔔 Event: property_change
Count: 1375
Properties:
📝 email: 414 changes
📝 hubspot_owner_id: 453 changes
📝 lastname: 94 changes
📝 firstname: 94 changes
📝 phone: 257 changes
📝 jobtitle: 8 changes
📝 associatedcompanyid: 52 changes
📝 mobilephone: 2 changes
📝 country: 1 changes
📦 Object Type: company
🔔 Event: creation
Count: 58
🔔 Event: association_change
Count: 224
🔔 Event: property_change
Count: 116
Properties:
📝 hubspot_owner_id: 58 changes
📝 name: 58 changes
📦 Object Type: deal
🔔 Event: creation
Count: 116
🔔 Event: property_change
Count: 1053
Properties:
📝 hs_deal_stage_probability: 269 changes
📝 hubspot_owner_id: 161 changes
📝 amount: 120 changes
📝 amount_in_home_currency: 120 changes
📝 closedate: 105 changes
📝 dealstage: 190 changes
📝 amount_stamp___stage_deposit_received: 16 changes
📝 deal_currency_code: 68 changes
📝 dealname: 3 changes
📝 pipeline: 1 changes
🔔 Event: association_change
Count: 243
INFO Looking for metrics: Config 64 (SalaryFinance - 70), Date 2026-04-16.
📊 Webhook Metrics for Config 64 (SalaryFinance - 70)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 11
Properties:
📝 hubspot_owner_id: 5 changes
📝 domain: 2 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 name: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 92
📦 Object Type: deal
🔔 Event: property_change
Count: 3
Properties:
📝 closedate: 1 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
🔔 Event: association_change
Count: 4
📦 Object Type: contact
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 181
Properties:
📝 email: 16 changes
📝 associatedcompanyid: 13 changes
📝 country: 11 changes
📝 hubspot_owner_id: 117 changes
📝 firstname: 8 changes
📝 jobtitle: 8 changes
📝 lastname: 8 changes
🔔 Event: association_change
Count: 96
INFO Looking for metrics: Config 1056 (Chromatic - 1119), Date 2026-04-16.
📊 Webhook Metrics for Config 1056 (Chromatic - 1119)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 445
🔔 Event: property_change
Count: 2421
Properties:
📝 email: 438 changes
📝 associatedcompanyid: 405 changes
📝 jobtitle: 760 changes
📝 firstname: 423 changes
📝 lastname: 320 changes
📝 hubspot_owner_id: 66 changes
📝 country: 2 changes
📝 phone: 3 changes
📝 hs_avatar_filemanager_key: 3 changes
📝 mobilephone: 1 changes
🔔 Event: association_change
Count: 841
📦 Object Type: deal
🔔 Event: property_change
Count: 94
Properties:
📝 dealstage: 11 changes
📝 hs_deal_stage_probability: 15 changes
📝 closedate: 16 changes
📝 hs_manual_forecast_category: 13 changes
📝 hs_next_step: 20 changes
📝 amount: 5 changes
📝 dealname: 7 changes
📝 hubspot_owner_id: 2 changes
📝 dealtype: 3 changes
📝 createdate: 2 changes
🔔 Event: creation
Count: 4
🔔 Event: association_change
Count: 13
📦 Object Type: company
🔔 Event: association_change
Count: 844
🔔 Event: property_change
Count: 202
Properties:
📝 country: 54 changes
📝 hubspot_owner_id: 47 changes
📝 domain: 57 changes
📝 name: 43 changes
📝 industry: 1 changes
🔔 Event: creation
Count: 57
INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16.
📊 Webhook Metrics for Config 533 (Connectd - 559)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 720
🔔 Event: property_change
Count: 3906
Properties:
📝 mobilephone: 15 changes
📝 lastname: 766 changes
📝 phone: 699 changes
📝 firstname: 773 changes
📝 email: 725 changes
📝 hubspot_owner_id: 757 changes
📝 jobtitle: 99 changes
📝 country: 72 changes
🔔 Event: association_change
Count: 864
📦 Object Type: deal
🔔 Event: property_change
Count: 3984
Properties:
📝 hs_deal_stage_probability: 1843 changes
📝 dealstage: 1316 changes
📝 closedate: 612 changes
📝 createdate: 7 changes
📝 hubspot_owner_id: 134 changes
📝 amount: 23 changes
📝 amount_in_home_currency: 30 changes
📝 dealname: 15 changes
📝 deal_currency_code: 3 changes
📝 pipeline: 1 changes
🔔 Event: association_change
Count: 780
🔔 Event: creation
Count: 648
📦 Object Type: company
🔔 Event: association_change
Count: 88
INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16.
📊 Webhook Metrics for Config 1006 (Dovetail Software - 1076)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 9
Properties:
📝 hs_manual_forecast_category: 2 changes
📝 hs_deal_stage_probability: 3 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
🔔 Event: creation
Count: 2
📦 Object Type: contact
🔔 Event: property_change
Count: 167
Properties:
📝 associatedcompanyid: 11 changes
📝 lastname: 11 changes
📝 phone: 11 changes
📝 hubspot_owner_id: 83 changes
📝 mobilephone: 9 changes
📝 firstname: 10 changes
📝 country: 13 changes
📝 email: 9 changes
📝 jobtitle: 10 changes
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 25
📦 Object Type: company
🔔 Event: association_change
Count: 27
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 14
Properties:
📝 hubspot_owner_id: 7 changes
📝 phone: 2 changes
📝 name: 1 changes
📝 country: 2 changes
📝 industry: 1 changes
📝 domain: 1 changes
INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16.
📊 Webhook Metrics for Config 154 (Learnerbly - 172)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 2
Properties:
📝 hubspot_owner_id: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 4
📦 Object Type: company
🔔 Event: association_change
Count: 4
📦 Object Type: deal
🔔 Event: property_change
Count: 3
Properties:
📝 amount: 1 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16.
📊 Webhook Metrics for Config 892 (Logiwa - 942)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 55
🔔 Event: property_change
Count: 322
Properties:
📝 jobtitle: 56 changes
📝 lastname: 57 changes
📝 firstname: 59 changes
📝 country: 4 changes
📝 email: 55 changes
📝 hubspot_owner_id: 38 changes
📝 associatedcompanyid: 47 changes
📝 phone: 6 changes
🔔 Event: association_change
Count: 96
📦 Object Type: company
🔔 Event: creation
Count: 16
🔔 Event: property_change
Count: 42
Properties:
📝 name: 21 changes
📝 domain: 16 changes
📝 hubspot_owner_id: 5 changes
🔔 Event: association_change
Count: 96
📦 Object Type: deal
🔔 Event: property_change
Count: 151
Properties:
📝 notes_last_updated: 139 changes
📝 closedate: 3 changes
📝 dealstage: 3 changes
📝 current_wms: 1 changes
📝 hs_deal_stage_probability: 3 changes
📝 amount: 1 changes
📝 hs_manual_forecast_category: 1 changes
INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16.
📊 Webhook Metrics for Config 882 (GoGlobal - 933)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 837
Properties:
📝 hs_next_step: 93 changes
📝 situation: 80 changes
📝 compelling_event: 76 changes
📝 decision_process: 72 changes
📝 decision_criteria: 76 changes
📝 problem: 50 changes
📝 impact: 50 changes
📝 amount: 73 changes
📝 amount_in_home_currency: 63 changes
📝 closedate: 19 changes
📝 dealstage: 39 changes
📝 description: 6 changes
📝 hs_deal_stage_probability: 51 changes
📝 dealname: 22 changes
📝 deal_currency_code: 24 changes
📝 hs_manual_forecast_category: 18 changes
📝 hiring_countries: 4 changes
📝 leadtype: 2 changes
📝 manager_forecast_notes: 10 changes
📝 competitors____please_specify: 1 changes
📝 closed_won_reason_jiminny_ai: 1 changes
📝 client_handover_notes_jiminny_ai: 1 changes
📝 lead_source_deal: 2 changes
📝 hubspot_owner_id: 4 changes
🔔 Event: association_change
Count: 48
📦 Object Type: company
🔔 Event: property_change
Count: 759
Properties:
📝 domain: 148 changes
📝 name: 140 changes
📝 country: 135 changes
📝 phone: 115 changes
📝 industry: 124 changes
📝 hubspot_owner_id: 97 changes
🔔 Event: creation
Count: 147
🔔 Event: association_change
Count: 1369
📦 Object Type: contact
🔔 Event: property_change
Count: 4203
Properties:
📝 lastname: 666 changes
📝 email: 600 changes
📝 hubspot_owner_id: 562 changes
📝 firstname: 608 changes
📝 jobtitle: 555 changes
📝 country: 585 changes
📝 associatedcompanyid: 585 changes
📝 phone: 31 changes
📝 mobilephone: 11 changes
🔔 Event: creation
Count: 600
🔔 Event: association_change
Count: 1349
INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16.
📊 Webhook Metrics for Config 797 (Kodex - 848)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 504
Properties:
📝 phone: 42 changes
📝 firstname: 48 changes
📝 email: 44 changes
📝 lastname: 50 changes
📝 associatedcompanyid: 138 changes
📝 jobtitle: 38 changes
📝 hubspot_owner_id: 103 changes
📝 mobilephone: 37 changes
📝 country: 4 changes
🔔 Event: creation
Count: 44
🔔 Event: association_change
Count: 623
📦 Object Type: company
🔔 Event: association_change
Count: 623
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 74
Properties:
📝 country: 8 changes
📝 name: 9 changes
📝 domain: 12 changes
📝 hubspot_owner_id: 30 changes
📝 industry: 8 changes
📝 phone: 7 changes
📦 Object Type: deal
🔔 Event: association_change
Count: 2
🔔 Event: property_change
Count: 4
Properties:
📝 amount: 1 changes
📝 hubspot_owner_id: 1 changes
📝 closedate: 1 changes
📝 dealname: 1 changes
INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16.
📊 Webhook Metrics for Config 636 (ProofPilot - 657)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 44
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 142
Properties:
📝 associatedcompanyid: 21 changes
📝 hubspot_owner_id: 24 changes
📝 jobtitle: 28 changes
📝 country: 14 changes
📝 lastname: 16 changes
📝 email: 14 changes
📝 phone: 8 changes
📝 firstname: 16 changes
📝 mobilephone: 1 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 8
Properties:
📝 dealtype: 1 changes
📝 amount: 2 changes
📝 closedate: 1 changes
📝 dealname: 2 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 44
INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16.
📊 Webhook Metrics for Config 1063 (Base.com - 1125)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 3464
🔔 Event: property_change
Count: 1320
Properties:
📝 name: 550 changes
📝 domain: 487 changes
📝 hubspot_owner_id: 157 changes
📝 phone: 35 changes
📝 country: 30 changes
📝 industry: 61 changes
🔔 Event: creation
Count: 604
📦 Object Type: contact
🔔 Event: property_change
Count: 8211
Properties:
📝 phone: 489 changes
📝 firstname: 1415 changes
📝 lastname: 1329 changes
📝 email: 1552 changes
📝 country: 400 changes
📝 associatedcompanyid: 1554 changes
📝 hubspot_owner_id: 428 changes
📝 jobtitle: 1026 changes
📝 mobilephone: 18 changes
🔔 Event: creation
Count: 1559
🔔 Event: association_change
Count: 3382
📦 Object Type: deal
🔔 Event: property_change
Count: 469
Properties:
📝 dealstage: 74 changes
📝 hs_deal_stage_probability: 112 changes
📝 closedate: 39 changes
📝 implementation_type: 9 changes
📝 deal_currency_code: 23 changes
📝 minimum_fee: 33 changes
📝 estimated_fulfilment_orders_per_month: 37 changes
📝 hubspot_owner_id: 8 changes
📝 dealtype: 2 changes
📝 amount: 26 changes
📝 monthly_orders_processed_by_base_with_normal_fee: 20 changes
📝 average_order_value: 18 changes
📝 estimated_orders_per_month: 9 changes
📝 dealname: 3 changes
📝 pipeline: 1 changes
📝 dor_principal_ia: 4 changes
📝 objecao_central_ia: 4 changes
📝 proximo_passo_ia: 4 changes
📝 resumo_da_reuniao_ia: 4 changes
📝 categoria_do_portfolio_ia: 3 changes
📝 perfil_comportamental_do_prospect_ia: 4 changes
📝 score_do_vendedor_ia: 4 changes
📝 temperatura_do_deal_ia: 4 changes
📝 nota_da_demo_ia: 4 changes
📝 analise_de_tecnicas_de_vendas_ia: 4 changes
📝 perfil_do_cliente_icp_ia: 4 changes
📝 erp: 8 changes
📝 hub_ia: 2 changes
📝 gap_de_funcionalidade_ia: 2 changes
🔔 Event: association_change
Count: 160
🔔 Event: creation
Count: 41
INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16.
📊 Webhook Metrics for Config 766 (Marsello - 781)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 22
🔔 Event: property_change
Count: 87
Properties:
📝 phone: 5 changes
📝 country: 11 changes
📝 domain: 13 changes
📝 industry: 8 changes
📝 name: 27 changes
📝 hubspot_owner_id: 23 changes
🔔 Event: association_change
Count: 203
📦 Object Type: contact
🔔 Event: property_change
Count: 337
Properties:
📝 jobtitle: 19 changes
📝 hubspot_owner_id: 35 changes
📝 email: 83 changes
📝 associatedcompanyid: 89 changes
📝 mobilephone: 16 changes
📝 phone: 14 changes
📝 country: 17 changes
📝 firstname: 33 changes
📝 lastname: 31 changes
🔔 Event: creation
Count: 24
🔔 Event: association_change
Count: 202
📦 Object Type: deal
🔔 Event: property_change
Count: 16
Properties:
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
📝 dealname: 2 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
📝 sites: 1 changes
📝 customers: 1 changes
📝 deal_icp: 1 changes
📝 integrations: 1 changes
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 3
INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16.
📊 Webhook Metrics for Config 803 (E3 - 854)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 134
🔔 Event: property_change
Count: 5
Properties:
📝 phone: 1 changes
📝 name: 2 changes
📝 domain: 1 changes
📝 hubspot_owner_id: 1 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 367
Properties:
📝 hubspot_owner_id: 64 changes
📝 jobtitle: 36 changes
📝 lastname: 52 changes
📝 firstname: 58 changes
📝 associatedcompanyid: 51 changes
📝 email: 60 changes
📝 phone: 42 changes
📝 mobilephone: 3 changes
📝 country: 1 changes
🔔 Event: creation
Count: 62
🔔 Event: association_change
Count: 124
📦 Object Type: deal
🔔 Event: property_change
Count: 104
Properties:
📝 dealstage: 23 changes
📝 hs_deal_stage_probability: 33 changes
📝 hs_manual_forecast_category: 26 changes
📝 amount: 10 changes
📝 closedate: 11 changes
📝 dealname: 1 changes
🔔 Event: association_change
Count: 42
🔔 Event: creation
Count: 13
INFO Looking for metrics: Config 944 (OneCrew - 1018), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 name: 3 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 921 (Matrak - 968), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 921 (Matrak - 968)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 email: 3 changes\n 📝\u0000 associatedcompanyid: 4 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 jobtitle: 1 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 name: 1 changes\n 📝\u0000 domain: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 amount: 1 changes\n\n\n INFO Looking for metrics: Config 1054 (Temelio - 1118), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1054 (Temelio - 1118)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 80\n Properties:\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 dealstage: 15 changes\n 📝\u0000 hs_manual_forecast_category: 12 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 35 changes\n 📝\u0000 hs_deal_stage_probability: 13 changes\n\n 🔔\u0000 Event: association_change\n Count: 85\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 7838\n\n 🔔\u0000 Event: property_change\n Count: 1938\n Properties:\n 📝\u0000 associatedcompanyid: 1828 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 lastname: 6 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 firstname: 7 changes\n 📝\u0000 hubspot_owner_id: 76 changes\n\n 🔔\u0000 Event: creation\n Count: 15\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 1609\n Properties:\n 📝\u0000 domain: 72 changes\n 📝\u0000 name: 6 changes\n 📝\u0000 hubspot_owner_id: 1047 changes\n 📝\u0000 phone: 431 changes\n 📝\u0000 country: 7 changes\n 📝\u0000 industry: 46 changes\n\n 🔔\u0000 Event: association_change\n Count: 7911\n\n\n INFO Looking for metrics: Config 1060 (Velatir - 1122), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1060 (Velatir - 1122)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 205\n Properties:\n 📝\u0000 email: 49 changes\n 📝\u0000 hubspot_owner_id: 64 changes\n 📝\u0000 firstname: 15 changes\n 📝\u0000 lastname: 14 changes\n 📝\u0000 associatedcompanyid: 50 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 jobtitle: 5 changes\n 📝\u0000 country: 3 changes\n\n 🔔\u0000 Event: creation\n Count: 50\n\n 🔔\u0000 Event: association_change\n Count: 114\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 21\n\n 🔔\u0000 Event: property_change\n Count: 496\n Properties:\n 📝\u0000 phone: 198 changes\n 📝\u0000 domain: 24 changes\n 📝\u0000 country: 18 changes\n 📝\u0000 name: 18 changes\n 📝\u0000 industry: 13 changes\n 📝\u0000 hubspot_owner_id: 225 changes\n\n 🔔\u0000 Event: association_change\n Count: 126\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 55\n Properties:\n 📝\u0000 hs_deal_stage_probability: 18 changes\n 📝\u0000 deal_currency_code: 8 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 dealname: 4 changes\n 📝\u0000 dealstage: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 36\n\n\n INFO Looking for metrics: Config 272 (Bonham & Brook - 290), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 272 (Bonham & Brook - 290)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 33\n\n 🔔\u0000 Event: association_change\n Count: 212\n\n 🔔\u0000 Event: property_change\n Count: 221\n Properties:\n 📝\u0000 hubspot_owner_id: 58 changes\n 📝\u0000 country: 33 changes\n 📝\u0000 name: 36 changes\n 📝\u0000 domain: 33 changes\n 📝\u0000 phone: 34 changes\n 📝\u0000 industry: 27 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 571\n Properties:\n 📝\u0000 notes_last_updated: 323 changes\n 📝\u0000 notes_last_contacted: 193 changes\n 📝\u0000 hs_deal_stage_probability: 21 changes\n 📝\u0000 dealstage: 13 changes\n 📝\u0000 amount: 8 changes\n 📝\u0000 dealname: 8 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 31\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 580\n Properties:\n 📝\u0000 country: 42 changes\n 📝\u0000 mobilephone: 25 changes\n 📝\u0000 jobtitle: 66 changes\n 📝\u0000 phone: 69 changes\n 📝\u0000 email: 70 changes\n 📝\u0000 hubspot_owner_id: 100 changes\n 📝\u0000 firstname: 66 changes\n 📝\u0000 lastname: 65 changes\n 📝\u0000 associatedcompanyid: 77 changes\n\n 🔔\u0000 Event: association_change\n Count: 195\n\n 🔔\u0000 Event: creation\n Count: 71\n\n\n INFO Looking for metrics: Config 989 (rtaoutdoor.com - 1058), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 989 (rtaoutdoor.com - 1058)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 413\n\n 🔔\u0000 Event: association_change\n Count: 235\n\n 🔔\u0000 Event: property_change\n Count: 1375\n Properties:\n 📝\u0000 email: 414 changes\n 📝\u0000 hubspot_owner_id: 453 changes\n 📝\u0000 lastname: 94 changes\n 📝\u0000 firstname: 94 changes\n 📝\u0000 phone: 257 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 associatedcompanyid: 52 changes\n 📝\u0000 mobilephone: 2 changes\n 📝\u0000 country: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 58\n\n 🔔\u0000 Event: association_change\n Count: 224\n\n 🔔\u0000 Event: property_change\n Count: 116\n Properties:\n 📝\u0000 hubspot_owner_id: 58 changes\n 📝\u0000 name: 58 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 116\n\n 🔔\u0000 Event: property_change\n Count: 1053\n Properties:\n 📝\u0000 hs_deal_stage_probability: 269 changes\n 📝\u0000 hubspot_owner_id: 161 changes\n 📝\u0000 amount: 120 changes\n 📝\u0000 amount_in_home_currency: 120 changes\n 📝\u0000 closedate: 105 changes\n 📝\u0000 dealstage: 190 changes\n 📝\u0000 amount_stamp___stage_deposit_received: 16 changes\n 📝\u0000 deal_currency_code: 68 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 243\n\n\n INFO Looking for metrics: Config 64 (SalaryFinance - 70), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 64 (SalaryFinance - 70)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 domain: 2 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 92\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 181\n Properties:\n 📝\u0000 email: 16 changes\n 📝\u0000 associatedcompanyid: 13 changes\n 📝\u0000 country: 11 changes\n 📝\u0000 hubspot_owner_id: 117 changes\n 📝\u0000 firstname: 8 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 lastname: 8 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n\n INFO Looking for metrics: Config 1056 (Chromatic - 1119), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1056 (Chromatic - 1119)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 445\n\n 🔔\u0000 Event: property_change\n Count: 2421\n Properties:\n 📝\u0000 email: 438 changes\n 📝\u0000 associatedcompanyid: 405 changes\n 📝\u0000 jobtitle: 760 changes\n 📝\u0000 firstname: 423 changes\n 📝\u0000 lastname: 320 changes\n 📝\u0000 hubspot_owner_id: 66 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 phone: 3 changes\n 📝\u0000 hs_avatar_filemanager_key: 3 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 841\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 94\n Properties:\n 📝\u0000 dealstage: 11 changes\n 📝\u0000 hs_deal_stage_probability: 15 changes\n 📝\u0000 closedate: 16 changes\n 📝\u0000 hs_manual_forecast_category: 13 changes\n 📝\u0000 hs_next_step: 20 changes\n 📝\u0000 amount: 5 changes\n 📝\u0000 dealname: 7 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 createdate: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 🔔\u0000 Event: association_change\n Count: 13\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 844\n\n 🔔\u0000 Event: property_change\n Count: 202\n Properties:\n 📝\u0000 country: 54 changes\n 📝\u0000 hubspot_owner_id: 47 changes\n 📝\u0000 domain: 57 changes\n 📝\u0000 name: 43 changes\n 📝\u0000 industry: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 57\n\n\n INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 533 (Connectd - 559)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 720\n\n 🔔\u0000 Event: property_change\n Count: 3906\n Properties:\n 📝\u0000 mobilephone: 15 changes\n 📝\u0000 lastname: 766 changes\n 📝\u0000 phone: 699 changes\n 📝\u0000 firstname: 773 changes\n 📝\u0000 email: 725 changes\n 📝\u0000 hubspot_owner_id: 757 changes\n 📝\u0000 jobtitle: 99 changes\n 📝\u0000 country: 72 changes\n\n 🔔\u0000 Event: association_change\n Count: 864\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3984\n Properties:\n 📝\u0000 hs_deal_stage_probability: 1843 changes\n 📝\u0000 dealstage: 1316 changes\n 📝\u0000 closedate: 612 changes\n 📝\u0000 createdate: 7 changes\n 📝\u0000 hubspot_owner_id: 134 changes\n 📝\u0000 amount: 23 changes\n 📝\u0000 amount_in_home_currency: 30 changes\n 📝\u0000 dealname: 15 changes\n 📝\u0000 deal_currency_code: 3 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 780\n\n 🔔\u0000 Event: creation\n Count: 648\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 88\n\n\n INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1006 (Dovetail Software - 1076)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 9\n Properties:\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 167\n Properties:\n 📝\u0000 associatedcompanyid: 11 changes\n 📝\u0000 lastname: 11 changes\n 📝\u0000 phone: 11 changes\n 📝\u0000 hubspot_owner_id: 83 changes\n 📝\u0000 mobilephone: 9 changes\n 📝\u0000 firstname: 10 changes\n 📝\u0000 country: 13 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 jobtitle: 10 changes\n\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 25\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 domain: 1 changes\n\n\n INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 154 (Learnerbly - 172)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n\n INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 892 (Logiwa - 942)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 55\n\n 🔔\u0000 Event: property_change\n Count: 322\n Properties:\n 📝\u0000 jobtitle: 56 changes\n 📝\u0000 lastname: 57 changes\n 📝\u0000 firstname: 59 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 email: 55 changes\n 📝\u0000 hubspot_owner_id: 38 changes\n 📝\u0000 associatedcompanyid: 47 changes\n 📝\u0000 phone: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 42\n Properties:\n 📝\u0000 name: 21 changes\n 📝\u0000 domain: 16 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 151\n Properties:\n 📝\u0000 notes_last_updated: 139 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 current_wms: 1 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hs_manual_forecast_category: 1 changes\n\n\n INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 882 (GoGlobal - 933)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 837\n Properties:\n 📝\u0000 hs_next_step: 93 changes\n 📝\u0000 situation: 80 changes\n 📝\u0000 compelling_event: 76 changes\n 📝\u0000 decision_process: 72 changes\n 📝\u0000 decision_criteria: 76 changes\n 📝\u0000 problem: 50 changes\n 📝\u0000 impact: 50 changes\n 📝\u0000 amount: 73 changes\n 📝\u0000 amount_in_home_currency: 63 changes\n 📝\u0000 closedate: 19 changes\n 📝\u0000 dealstage: 39 changes\n 📝\u0000 description: 6 changes\n 📝\u0000 hs_deal_stage_probability: 51 changes\n 📝\u0000 dealname: 22 changes\n 📝\u0000 deal_currency_code: 24 changes\n 📝\u0000 hs_manual_forecast_category: 18 changes\n 📝\u0000 hiring_countries: 4 changes\n 📝\u0000 leadtype: 2 changes\n 📝\u0000 manager_forecast_notes: 10 changes\n 📝\u0000 competitors____please_specify: 1 changes\n 📝\u0000 closed_won_reason_jiminny_ai: 1 changes\n 📝\u0000 client_handover_notes_jiminny_ai: 1 changes\n 📝\u0000 lead_source_deal: 2 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n\n 🔔\u0000 Event: association_change\n Count: 48\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 759\n Properties:\n 📝\u0000 domain: 148 changes\n 📝\u0000 name: 140 changes\n 📝\u0000 country: 135 changes\n 📝\u0000 phone: 115 changes\n 📝\u0000 industry: 124 changes\n 📝\u0000 hubspot_owner_id: 97 changes\n\n 🔔\u0000 Event: creation\n Count: 147\n\n 🔔\u0000 Event: association_change\n Count: 1369\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 4203\n Properties:\n 📝\u0000 lastname: 666 changes\n 📝\u0000 email: 600 changes\n 📝\u0000 hubspot_owner_id: 562 changes\n 📝\u0000 firstname: 608 changes\n 📝\u0000 jobtitle: 555 changes\n 📝\u0000 country: 585 changes\n 📝\u0000 associatedcompanyid: 585 changes\n 📝\u0000 phone: 31 changes\n 📝\u0000 mobilephone: 11 changes\n\n 🔔\u0000 Event: creation\n Count: 600\n\n 🔔\u0000 Event: association_change\n Count: 1349\n\n\n INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 797 (Kodex - 848)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 504\n Properties:\n 📝\u0000 phone: 42 changes\n 📝\u0000 firstname: 48 changes\n 📝\u0000 email: 44 changes\n 📝\u0000 lastname: 50 changes\n 📝\u0000 associatedcompanyid: 138 changes\n 📝\u0000 jobtitle: 38 changes\n 📝\u0000 hubspot_owner_id: 103 changes\n 📝\u0000 mobilephone: 37 changes\n 📝\u0000 country: 4 changes\n\n 🔔\u0000 Event: creation\n Count: 44\n\n 🔔\u0000 Event: association_change\n Count: 623\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 623\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 74\n Properties:\n 📝\u0000 country: 8 changes\n 📝\u0000 name: 9 changes\n 📝\u0000 domain: 12 changes\n 📝\u0000 hubspot_owner_id: 30 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 phone: 7 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 4\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 1 changes\n\n\n INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 636 (ProofPilot - 657)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 44\n\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 142\n Properties:\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 hubspot_owner_id: 24 changes\n 📝\u0000 jobtitle: 28 changes\n 📝\u0000 country: 14 changes\n 📝\u0000 lastname: 16 changes\n 📝\u0000 email: 14 changes\n 📝\u0000 phone: 8 changes\n 📝\u0000 firstname: 16 changes\n 📝\u0000 mobilephone: 1 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 dealtype: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 44\n\n\n INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1063 (Base.com - 1125)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 3464\n\n 🔔\u0000 Event: property_change\n Count: 1320\n Properties:\n 📝\u0000 name: 550 changes\n 📝\u0000 domain: 487 changes\n 📝\u0000 hubspot_owner_id: 157 changes\n 📝\u0000 phone: 35 changes\n 📝\u0000 country: 30 changes\n 📝\u0000 industry: 61 changes\n\n 🔔\u0000 Event: creation\n Count: 604\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 8211\n Properties:\n 📝\u0000 phone: 489 changes\n 📝\u0000 firstname: 1415 changes\n 📝\u0000 lastname: 1329 changes\n 📝\u0000 email: 1552 changes\n 📝\u0000 country: 400 changes\n 📝\u0000 associatedcompanyid: 1554 changes\n 📝\u0000 hubspot_owner_id: 428 changes\n 📝\u0000 jobtitle: 1026 changes\n 📝\u0000 mobilephone: 18 changes\n\n 🔔\u0000 Event: creation\n Count: 1559\n\n 🔔\u0000 Event: association_change\n Count: 3382\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 469\n Properties:\n 📝\u0000 dealstage: 74 changes\n 📝\u0000 hs_deal_stage_probability: 112 changes\n 📝\u0000 closedate: 39 changes\n 📝\u0000 implementation_type: 9 changes\n 📝\u0000 deal_currency_code: 23 changes\n 📝\u0000 minimum_fee: 33 changes\n 📝\u0000 estimated_fulfilment_orders_per_month: 37 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 dealtype: 2 changes\n 📝\u0000 amount: 26 changes\n 📝\u0000 monthly_orders_processed_by_base_with_normal_fee: 20 changes\n 📝\u0000 average_order_value: 18 changes\n 📝\u0000 estimated_orders_per_month: 9 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 dor_principal_ia: 4 changes\n 📝\u0000 objecao_central_ia: 4 changes\n 📝\u0000 proximo_passo_ia: 4 changes\n 📝\u0000 resumo_da_reuniao_ia: 4 changes\n 📝\u0000 categoria_do_portfolio_ia: 3 changes\n 📝\u0000 perfil_comportamental_do_prospect_ia: 4 changes\n 📝\u0000 score_do_vendedor_ia: 4 changes\n 📝\u0000 temperatura_do_deal_ia: 4 changes\n 📝\u0000 nota_da_demo_ia: 4 changes\n 📝\u0000 analise_de_tecnicas_de_vendas_ia: 4 changes\n 📝\u0000 perfil_do_cliente_icp_ia: 4 changes\n 📝\u0000 erp: 8 changes\n 📝\u0000 hub_ia: 2 changes\n 📝\u0000 gap_de_funcionalidade_ia: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 160\n\n 🔔\u0000 Event: creation\n Count: 41\n\n\n INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 766 (Marsello - 781)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 22\n\n 🔔\u0000 Event: property_change\n Count: 87\n Properties:\n 📝\u0000 phone: 5 changes\n 📝\u0000 country: 11 changes\n 📝\u0000 domain: 13 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 name: 27 changes\n 📝\u0000 hubspot_owner_id: 23 changes\n\n 🔔\u0000 Event: association_change\n Count: 203\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 337\n Properties:\n 📝\u0000 jobtitle: 19 changes\n 📝\u0000 hubspot_owner_id: 35 changes\n 📝\u0000 email: 83 changes\n 📝\u0000 associatedcompanyid: 89 changes\n 📝\u0000 mobilephone: 16 changes\n 📝\u0000 phone: 14 changes\n 📝\u0000 country: 17 changes\n 📝\u0000 firstname: 33 changes\n 📝\u0000 lastname: 31 changes\n\n 🔔\u0000 Event: creation\n Count: 24\n\n 🔔\u0000 Event: association_change\n Count: 202\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 16\n Properties:\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 sites: 1 changes\n 📝\u0000 customers: 1 changes\n 📝\u0000 deal_icp: 1 changes\n 📝\u0000 integrations: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n\n INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 803 (E3 - 854)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 134\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 phone: 1 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 domain: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 367\n Properties:\n 📝\u0000 hubspot_owner_id: 64 changes\n 📝\u0000 jobtitle: 36 changes\n 📝\u0000 lastname: 52 changes\n 📝\u0000 firstname: 58 changes\n 📝\u0000 associatedcompanyid: 51 changes\n 📝\u0000 email: 60 changes\n 📝\u0000 phone: 42 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 62\n\n 🔔\u0000 Event: association_change\n Count: 124\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 104\n Properties:\n 📝\u0000 dealstage: 23 changes\n 📝\u0000 hs_deal_stage_probability: 33 changes\n 📝\u0000 hs_manual_forecast_category: 26 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 closedate: 11 changes\n 📝\u0000 dealname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 42\n\n 🔔\u0000 Event: creation\n Count: 13\n\n\n INFO Looking for metrics: Config 944 (OneCrew - 1018), Date 2026-04-16.","depth":4,"value":"📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 name: 3 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 921 (Matrak - 968), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 921 (Matrak - 968)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 email: 3 changes\n 📝\u0000 associatedcompanyid: 4 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 jobtitle: 1 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 name: 1 changes\n 📝\u0000 domain: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 amount: 1 changes\n\n\n INFO Looking for metrics: Config 1054 (Temelio - 1118), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1054 (Temelio - 1118)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 80\n Properties:\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 dealstage: 15 changes\n 📝\u0000 hs_manual_forecast_category: 12 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 35 changes\n 📝\u0000 hs_deal_stage_probability: 13 changes\n\n 🔔\u0000 Event: association_change\n Count: 85\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 7838\n\n 🔔\u0000 Event: property_change\n Count: 1938\n Properties:\n 📝\u0000 associatedcompanyid: 1828 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 lastname: 6 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 firstname: 7 changes\n 📝\u0000 hubspot_owner_id: 76 changes\n\n 🔔\u0000 Event: creation\n Count: 15\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 1609\n Properties:\n 📝\u0000 domain: 72 changes\n 📝\u0000 name: 6 changes\n 📝\u0000 hubspot_owner_id: 1047 changes\n 📝\u0000 phone: 431 changes\n 📝\u0000 country: 7 changes\n 📝\u0000 industry: 46 changes\n\n 🔔\u0000 Event: association_change\n Count: 7911\n\n\n INFO Looking for metrics: Config 1060 (Velatir - 1122), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1060 (Velatir - 1122)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 205\n Properties:\n 📝\u0000 email: 49 changes\n 📝\u0000 hubspot_owner_id: 64 changes\n 📝\u0000 firstname: 15 changes\n 📝\u0000 lastname: 14 changes\n 📝\u0000 associatedcompanyid: 50 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 jobtitle: 5 changes\n 📝\u0000 country: 3 changes\n\n 🔔\u0000 Event: creation\n Count: 50\n\n 🔔\u0000 Event: association_change\n Count: 114\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 21\n\n 🔔\u0000 Event: property_change\n Count: 496\n Properties:\n 📝\u0000 phone: 198 changes\n 📝\u0000 domain: 24 changes\n 📝\u0000 country: 18 changes\n 📝\u0000 name: 18 changes\n 📝\u0000 industry: 13 changes\n 📝\u0000 hubspot_owner_id: 225 changes\n\n 🔔\u0000 Event: association_change\n Count: 126\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 55\n Properties:\n 📝\u0000 hs_deal_stage_probability: 18 changes\n 📝\u0000 deal_currency_code: 8 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 dealname: 4 changes\n 📝\u0000 dealstage: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 36\n\n\n INFO Looking for metrics: Config 272 (Bonham & Brook - 290), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 272 (Bonham & Brook - 290)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 33\n\n 🔔\u0000 Event: association_change\n Count: 212\n\n 🔔\u0000 Event: property_change\n Count: 221\n Properties:\n 📝\u0000 hubspot_owner_id: 58 changes\n 📝\u0000 country: 33 changes\n 📝\u0000 name: 36 changes\n 📝\u0000 domain: 33 changes\n 📝\u0000 phone: 34 changes\n 📝\u0000 industry: 27 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 571\n Properties:\n 📝\u0000 notes_last_updated: 323 changes\n 📝\u0000 notes_last_contacted: 193 changes\n 📝\u0000 hs_deal_stage_probability: 21 changes\n 📝\u0000 dealstage: 13 changes\n 📝\u0000 amount: 8 changes\n 📝\u0000 dealname: 8 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 31\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 580\n Properties:\n 📝\u0000 country: 42 changes\n 📝\u0000 mobilephone: 25 changes\n 📝\u0000 jobtitle: 66 changes\n 📝\u0000 phone: 69 changes\n 📝\u0000 email: 70 changes\n 📝\u0000 hubspot_owner_id: 100 changes\n 📝\u0000 firstname: 66 changes\n 📝\u0000 lastname: 65 changes\n 📝\u0000 associatedcompanyid: 77 changes\n\n 🔔\u0000 Event: association_change\n Count: 195\n\n 🔔\u0000 Event: creation\n Count: 71\n\n\n INFO Looking for metrics: Config 989 (rtaoutdoor.com - 1058), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 989 (rtaoutdoor.com - 1058)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 413\n\n 🔔\u0000 Event: association_change\n Count: 235\n\n 🔔\u0000 Event: property_change\n Count: 1375\n Properties:\n 📝\u0000 email: 414 changes\n 📝\u0000 hubspot_owner_id: 453 changes\n 📝\u0000 lastname: 94 changes\n 📝\u0000 firstname: 94 changes\n 📝\u0000 phone: 257 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 associatedcompanyid: 52 changes\n 📝\u0000 mobilephone: 2 changes\n 📝\u0000 country: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 58\n\n 🔔\u0000 Event: association_change\n Count: 224\n\n 🔔\u0000 Event: property_change\n Count: 116\n Properties:\n 📝\u0000 hubspot_owner_id: 58 changes\n 📝\u0000 name: 58 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 116\n\n 🔔\u0000 Event: property_change\n Count: 1053\n Properties:\n 📝\u0000 hs_deal_stage_probability: 269 changes\n 📝\u0000 hubspot_owner_id: 161 changes\n 📝\u0000 amount: 120 changes\n 📝\u0000 amount_in_home_currency: 120 changes\n 📝\u0000 closedate: 105 changes\n 📝\u0000 dealstage: 190 changes\n 📝\u0000 amount_stamp___stage_deposit_received: 16 changes\n 📝\u0000 deal_currency_code: 68 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 243\n\n\n INFO Looking for metrics: Config 64 (SalaryFinance - 70), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 64 (SalaryFinance - 70)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 domain: 2 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 92\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 181\n Properties:\n 📝\u0000 email: 16 changes\n 📝\u0000 associatedcompanyid: 13 changes\n 📝\u0000 country: 11 changes\n 📝\u0000 hubspot_owner_id: 117 changes\n 📝\u0000 firstname: 8 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 lastname: 8 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n\n INFO Looking for metrics: Config 1056 (Chromatic - 1119), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1056 (Chromatic - 1119)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 445\n\n 🔔\u0000 Event: property_change\n Count: 2421\n Properties:\n 📝\u0000 email: 438 changes\n 📝\u0000 associatedcompanyid: 405 changes\n 📝\u0000 jobtitle: 760 changes\n 📝\u0000 firstname: 423 changes\n 📝\u0000 lastname: 320 changes\n 📝\u0000 hubspot_owner_id: 66 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 phone: 3 changes\n 📝\u0000 hs_avatar_filemanager_key: 3 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 841\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 94\n Properties:\n 📝\u0000 dealstage: 11 changes\n 📝\u0000 hs_deal_stage_probability: 15 changes\n 📝\u0000 closedate: 16 changes\n 📝\u0000 hs_manual_forecast_category: 13 changes\n 📝\u0000 hs_next_step: 20 changes\n 📝\u0000 amount: 5 changes\n 📝\u0000 dealname: 7 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 createdate: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 🔔\u0000 Event: association_change\n Count: 13\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 844\n\n 🔔\u0000 Event: property_change\n Count: 202\n Properties:\n 📝\u0000 country: 54 changes\n 📝\u0000 hubspot_owner_id: 47 changes\n 📝\u0000 domain: 57 changes\n 📝\u0000 name: 43 changes\n 📝\u0000 industry: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 57\n\n\n INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 533 (Connectd - 559)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 720\n\n 🔔\u0000 Event: property_change\n Count: 3906\n Properties:\n 📝\u0000 mobilephone: 15 changes\n 📝\u0000 lastname: 766 changes\n 📝\u0000 phone: 699 changes\n 📝\u0000 firstname: 773 changes\n 📝\u0000 email: 725 changes\n 📝\u0000 hubspot_owner_id: 757 changes\n 📝\u0000 jobtitle: 99 changes\n 📝\u0000 country: 72 changes\n\n 🔔\u0000 Event: association_change\n Count: 864\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3984\n Properties:\n 📝\u0000 hs_deal_stage_probability: 1843 changes\n 📝\u0000 dealstage: 1316 changes\n 📝\u0000 closedate: 612 changes\n 📝\u0000 createdate: 7 changes\n 📝\u0000 hubspot_owner_id: 134 changes\n 📝\u0000 amount: 23 changes\n 📝\u0000 amount_in_home_currency: 30 changes\n 📝\u0000 dealname: 15 changes\n 📝\u0000 deal_currency_code: 3 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 780\n\n 🔔\u0000 Event: creation\n Count: 648\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 88\n\n\n INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1006 (Dovetail Software - 1076)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 9\n Properties:\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 167\n Properties:\n 📝\u0000 associatedcompanyid: 11 changes\n 📝\u0000 lastname: 11 changes\n 📝\u0000 phone: 11 changes\n 📝\u0000 hubspot_owner_id: 83 changes\n 📝\u0000 mobilephone: 9 changes\n 📝\u0000 firstname: 10 changes\n 📝\u0000 country: 13 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 jobtitle: 10 changes\n\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 25\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 domain: 1 changes\n\n\n INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 154 (Learnerbly - 172)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n\n INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 892 (Logiwa - 942)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 55\n\n 🔔\u0000 Event: property_change\n Count: 322\n Properties:\n 📝\u0000 jobtitle: 56 changes\n 📝\u0000 lastname: 57 changes\n 📝\u0000 firstname: 59 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 email: 55 changes\n 📝\u0000 hubspot_owner_id: 38 changes\n 📝\u0000 associatedcompanyid: 47 changes\n 📝\u0000 phone: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 42\n Properties:\n 📝\u0000 name: 21 changes\n 📝\u0000 domain: 16 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 151\n Properties:\n 📝\u0000 notes_last_updated: 139 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 current_wms: 1 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hs_manual_forecast_category: 1 changes\n\n\n INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 882 (GoGlobal - 933)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 837\n Properties:\n 📝\u0000 hs_next_step: 93 changes\n 📝\u0000 situation: 80 changes\n 📝\u0000 compelling_event: 76 changes\n 📝\u0000 decision_process: 72 changes\n 📝\u0000 decision_criteria: 76 changes\n 📝\u0000 problem: 50 changes\n 📝\u0000 impact: 50 changes\n 📝\u0000 amount: 73 changes\n 📝\u0000 amount_in_home_currency: 63 changes\n 📝\u0000 closedate: 19 changes\n 📝\u0000 dealstage: 39 changes\n 📝\u0000 description: 6 changes\n 📝\u0000 hs_deal_stage_probability: 51 changes\n 📝\u0000 dealname: 22 changes\n 📝\u0000 deal_currency_code: 24 changes\n 📝\u0000 hs_manual_forecast_category: 18 changes\n 📝\u0000 hiring_countries: 4 changes\n 📝\u0000 leadtype: 2 changes\n 📝\u0000 manager_forecast_notes: 10 changes\n 📝\u0000 competitors____please_specify: 1 changes\n 📝\u0000 closed_won_reason_jiminny_ai: 1 changes\n 📝\u0000 client_handover_notes_jiminny_ai: 1 changes\n 📝\u0000 lead_source_deal: 2 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n\n 🔔\u0000 Event: association_change\n Count: 48\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 759\n Properties:\n 📝\u0000 domain: 148 changes\n 📝\u0000 name: 140 changes\n 📝\u0000 country: 135 changes\n 📝\u0000 phone: 115 changes\n 📝\u0000 industry: 124 changes\n 📝\u0000 hubspot_owner_id: 97 changes\n\n 🔔\u0000 Event: creation\n Count: 147\n\n 🔔\u0000 Event: association_change\n Count: 1369\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 4203\n Properties:\n 📝\u0000 lastname: 666 changes\n 📝\u0000 email: 600 changes\n 📝\u0000 hubspot_owner_id: 562 changes\n 📝\u0000 firstname: 608 changes\n 📝\u0000 jobtitle: 555 changes\n 📝\u0000 country: 585 changes\n 📝\u0000 associatedcompanyid: 585 changes\n 📝\u0000 phone: 31 changes\n 📝\u0000 mobilephone: 11 changes\n\n 🔔\u0000 Event: creation\n Count: 600\n\n 🔔\u0000 Event: association_change\n Count: 1349\n\n\n INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 797 (Kodex - 848)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 504\n Properties:\n 📝\u0000 phone: 42 changes\n 📝\u0000 firstname: 48 changes\n 📝\u0000 email: 44 changes\n 📝\u0000 lastname: 50 changes\n 📝\u0000 associatedcompanyid: 138 changes\n 📝\u0000 jobtitle: 38 changes\n 📝\u0000 hubspot_owner_id: 103 changes\n 📝\u0000 mobilephone: 37 changes\n 📝\u0000 country: 4 changes\n\n 🔔\u0000 Event: creation\n Count: 44\n\n 🔔\u0000 Event: association_change\n Count: 623\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 623\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 74\n Properties:\n 📝\u0000 country: 8 changes\n 📝\u0000 name: 9 changes\n 📝\u0000 domain: 12 changes\n 📝\u0000 hubspot_owner_id: 30 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 phone: 7 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 4\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 1 changes\n\n\n INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 636 (ProofPilot - 657)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 44\n\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 142\n Properties:\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 hubspot_owner_id: 24 changes\n 📝\u0000 jobtitle: 28 changes\n 📝\u0000 country: 14 changes\n 📝\u0000 lastname: 16 changes\n 📝\u0000 email: 14 changes\n 📝\u0000 phone: 8 changes\n 📝\u0000 firstname: 16 changes\n 📝\u0000 mobilephone: 1 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 dealtype: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 44\n\n\n INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1063 (Base.com - 1125)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 3464\n\n 🔔\u0000 Event: property_change\n Count: 1320\n Properties:\n 📝\u0000 name: 550 changes\n 📝\u0000 domain: 487 changes\n 📝\u0000 hubspot_owner_id: 157 changes\n 📝\u0000 phone: 35 changes\n 📝\u0000 country: 30 changes\n 📝\u0000 industry: 61 changes\n\n 🔔\u0000 Event: creation\n Count: 604\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 8211\n Properties:\n 📝\u0000 phone: 489 changes\n 📝\u0000 firstname: 1415 changes\n 📝\u0000 lastname: 1329 changes\n 📝\u0000 email: 1552 changes\n 📝\u0000 country: 400 changes\n 📝\u0000 associatedcompanyid: 1554 changes\n 📝\u0000 hubspot_owner_id: 428 changes\n 📝\u0000 jobtitle: 1026 changes\n 📝\u0000 mobilephone: 18 changes\n\n 🔔\u0000 Event: creation\n Count: 1559\n\n 🔔\u0000 Event: association_change\n Count: 3382\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 469\n Properties:\n 📝\u0000 dealstage: 74 changes\n 📝\u0000 hs_deal_stage_probability: 112 changes\n 📝\u0000 closedate: 39 changes\n 📝\u0000 implementation_type: 9 changes\n 📝\u0000 deal_currency_code: 23 changes\n 📝\u0000 minimum_fee: 33 changes\n 📝\u0000 estimated_fulfilment_orders_per_month: 37 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 dealtype: 2 changes\n 📝\u0000 amount: 26 changes\n 📝\u0000 monthly_orders_processed_by_base_with_normal_fee: 20 changes\n 📝\u0000 average_order_value: 18 changes\n 📝\u0000 estimated_orders_per_month: 9 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 dor_principal_ia: 4 changes\n 📝\u0000 objecao_central_ia: 4 changes\n 📝\u0000 proximo_passo_ia: 4 changes\n 📝\u0000 resumo_da_reuniao_ia: 4 changes\n 📝\u0000 categoria_do_portfolio_ia: 3 changes\n 📝\u0000 perfil_comportamental_do_prospect_ia: 4 changes\n 📝\u0000 score_do_vendedor_ia: 4 changes\n 📝\u0000 temperatura_do_deal_ia: 4 changes\n 📝\u0000 nota_da_demo_ia: 4 changes\n 📝\u0000 analise_de_tecnicas_de_vendas_ia: 4 changes\n 📝\u0000 perfil_do_cliente_icp_ia: 4 changes\n 📝\u0000 erp: 8 changes\n 📝\u0000 hub_ia: 2 changes\n 📝\u0000 gap_de_funcionalidade_ia: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 160\n\n 🔔\u0000 Event: creation\n Count: 41\n\n\n INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 766 (Marsello - 781)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 22\n\n 🔔\u0000 Event: property_change\n Count: 87\n Properties:\n 📝\u0000 phone: 5 changes\n 📝\u0000 country: 11 changes\n 📝\u0000 domain: 13 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 name: 27 changes\n 📝\u0000 hubspot_owner_id: 23 changes\n\n 🔔\u0000 Event: association_change\n Count: 203\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 337\n Properties:\n 📝\u0000 jobtitle: 19 changes\n 📝\u0000 hubspot_owner_id: 35 changes\n 📝\u0000 email: 83 changes\n 📝\u0000 associatedcompanyid: 89 changes\n 📝\u0000 mobilephone: 16 changes\n 📝\u0000 phone: 14 changes\n 📝\u0000 country: 17 changes\n 📝\u0000 firstname: 33 changes\n 📝\u0000 lastname: 31 changes\n\n 🔔\u0000 Event: creation\n Count: 24\n\n 🔔\u0000 Event: association_change\n Count: 202\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 16\n Properties:\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 sites: 1 changes\n 📝\u0000 customers: 1 changes\n 📝\u0000 deal_icp: 1 changes\n 📝\u0000 integrations: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n\n INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 803 (E3 - 854)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 134\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 phone: 1 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 domain: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 367\n Properties:\n 📝\u0000 hubspot_owner_id: 64 changes\n 📝\u0000 jobtitle: 36 changes\n 📝\u0000 lastname: 52 changes\n 📝\u0000 firstname: 58 changes\n 📝\u0000 associatedcompanyid: 51 changes\n 📝\u0000 email: 60 changes\n 📝\u0000 phone: 42 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 62\n\n 🔔\u0000 Event: association_change\n Count: 124\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 104\n Properties:\n 📝\u0000 dealstage: 23 changes\n 📝\u0000 hs_deal_stage_probability: 33 changes\n 📝\u0000 hs_manual_forecast_category: 26 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 closedate: 11 changes\n 📝\u0000 dealname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 42\n\n 🔔\u0000 Event: creation\n Count: 13\n\n\n INFO Looking for metrics: Config 944 (OneCrew - 1018), Date 2026-04-16.","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
5228644432550211417
|
7613041657761902453
|
idle
|
accessibility
|
NULL
|
📦 Object Type: company
🔔 Event: property_c 📦 Object Type: company
🔔 Event: property_change
Count: 5
Properties:
📝 hubspot_owner_id: 1 changes
📝 name: 3 changes
📝 country: 1 changes
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 921 (Matrak - 968), Date 2026-04-16.
📊 Webhook Metrics for Config 921 (Matrak - 968)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 17
Properties:
📝 hubspot_owner_id: 6 changes
📝 email: 3 changes
📝 associatedcompanyid: 4 changes
📝 phone: 1 changes
📝 jobtitle: 1 changes
📝 lastname: 1 changes
📝 firstname: 1 changes
🔔 Event: creation
Count: 3
🔔 Event: association_change
Count: 8
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 2
Properties:
📝 name: 1 changes
📝 domain: 1 changes
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: property_change
Count: 5
Properties:
📝 hubspot_owner_id: 4 changes
📝 amount: 1 changes
INFO Looking for metrics: Config 1054 (Temelio - 1118), Date 2026-04-16.
📊 Webhook Metrics for Config 1054 (Temelio - 1118)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 80
Properties:
📝 hs_next_step: 2 changes
📝 dealstage: 15 changes
📝 hs_manual_forecast_category: 12 changes
📝 hubspot_owner_id: 1 changes
📝 amount: 2 changes
📝 closedate: 35 changes
📝 hs_deal_stage_probability: 13 changes
🔔 Event: association_change
Count: 85
📦 Object Type: contact
🔔 Event: association_change
Count: 7838
🔔 Event: property_change
Count: 1938
Properties:
📝 associatedcompanyid: 1828 changes
📝 phone: 5 changes
📝 lastname: 6 changes
📝 email: 9 changes
📝 jobtitle: 7 changes
📝 firstname: 7 changes
📝 hubspot_owner_id: 76 changes
🔔 Event: creation
Count: 15
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 1609
Properties:
📝 domain: 72 changes
📝 name: 6 changes
📝 hubspot_owner_id: 1047 changes
📝 phone: 431 changes
📝 country: 7 changes
📝 industry: 46 changes
🔔 Event: association_change
Count: 7911
INFO Looking for metrics: Config 1060 (Velatir - 1122), Date 2026-04-16.
📊 Webhook Metrics for Config 1060 (Velatir - 1122)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 205
Properties:
📝 email: 49 changes
📝 hubspot_owner_id: 64 changes
📝 firstname: 15 changes
📝 lastname: 14 changes
📝 associatedcompanyid: 50 changes
📝 phone: 5 changes
📝 jobtitle: 5 changes
📝 country: 3 changes
🔔 Event: creation
Count: 50
🔔 Event: association_change
Count: 114
📦 Object Type: company
🔔 Event: creation
Count: 21
🔔 Event: property_change
Count: 496
Properties:
📝 phone: 198 changes
📝 domain: 24 changes
📝 country: 18 changes
📝 name: 18 changes
📝 industry: 13 changes
📝 hubspot_owner_id: 225 changes
🔔 Event: association_change
Count: 126
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 55
Properties:
📝 hs_deal_stage_probability: 18 changes
📝 deal_currency_code: 8 changes
📝 amount: 10 changes
📝 hubspot_owner_id: 6 changes
📝 dealtype: 3 changes
📝 dealname: 4 changes
📝 dealstage: 6 changes
🔔 Event: association_change
Count: 36
INFO Looking for metrics: Config 272 (Bonham & Brook - 290), Date 2026-04-16.
📊 Webhook Metrics for Config 272 (Bonham & Brook - 290)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 33
🔔 Event: association_change
Count: 212
🔔 Event: property_change
Count: 221
Properties:
📝 hubspot_owner_id: 58 changes
📝 country: 33 changes
📝 name: 36 changes
📝 domain: 33 changes
📝 phone: 34 changes
📝 industry: 27 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 571
Properties:
📝 notes_last_updated: 323 changes
📝 notes_last_contacted: 193 changes
📝 hs_deal_stage_probability: 21 changes
📝 dealstage: 13 changes
📝 amount: 8 changes
📝 dealname: 8 changes
📝 hs_manual_forecast_category: 3 changes
📝 closedate: 1 changes
📝 pipeline: 1 changes
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 31
📦 Object Type: contact
🔔 Event: property_change
Count: 580
Properties:
📝 country: 42 changes
📝 mobilephone: 25 changes
📝 jobtitle: 66 changes
📝 phone: 69 changes
📝 email: 70 changes
📝 hubspot_owner_id: 100 changes
📝 firstname: 66 changes
📝 lastname: 65 changes
📝 associatedcompanyid: 77 changes
🔔 Event: association_change
Count: 195
🔔 Event: creation
Count: 71
INFO Looking for metrics: Config 989 (rtaoutdoor.com - 1058), Date 2026-04-16.
📊 Webhook Metrics for Config 989 (rtaoutdoor.com - 1058)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 413
🔔 Event: association_change
Count: 235
🔔 Event: property_change
Count: 1375
Properties:
📝 email: 414 changes
📝 hubspot_owner_id: 453 changes
📝 lastname: 94 changes
📝 firstname: 94 changes
📝 phone: 257 changes
📝 jobtitle: 8 changes
📝 associatedcompanyid: 52 changes
📝 mobilephone: 2 changes
📝 country: 1 changes
📦 Object Type: company
🔔 Event: creation
Count: 58
🔔 Event: association_change
Count: 224
🔔 Event: property_change
Count: 116
Properties:
📝 hubspot_owner_id: 58 changes
📝 name: 58 changes
📦 Object Type: deal
🔔 Event: creation
Count: 116
🔔 Event: property_change
Count: 1053
Properties:
📝 hs_deal_stage_probability: 269 changes
📝 hubspot_owner_id: 161 changes
📝 amount: 120 changes
📝 amount_in_home_currency: 120 changes
📝 closedate: 105 changes
📝 dealstage: 190 changes
📝 amount_stamp___stage_deposit_received: 16 changes
📝 deal_currency_code: 68 changes
📝 dealname: 3 changes
📝 pipeline: 1 changes
🔔 Event: association_change
Count: 243
INFO Looking for metrics: Config 64 (SalaryFinance - 70), Date 2026-04-16.
📊 Webhook Metrics for Config 64 (SalaryFinance - 70)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 11
Properties:
📝 hubspot_owner_id: 5 changes
📝 domain: 2 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 name: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 92
📦 Object Type: deal
🔔 Event: property_change
Count: 3
Properties:
📝 closedate: 1 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
🔔 Event: association_change
Count: 4
📦 Object Type: contact
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 181
Properties:
📝 email: 16 changes
📝 associatedcompanyid: 13 changes
📝 country: 11 changes
📝 hubspot_owner_id: 117 changes
📝 firstname: 8 changes
📝 jobtitle: 8 changes
📝 lastname: 8 changes
🔔 Event: association_change
Count: 96
INFO Looking for metrics: Config 1056 (Chromatic - 1119), Date 2026-04-16.
📊 Webhook Metrics for Config 1056 (Chromatic - 1119)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 445
🔔 Event: property_change
Count: 2421
Properties:
📝 email: 438 changes
📝 associatedcompanyid: 405 changes
📝 jobtitle: 760 changes
📝 firstname: 423 changes
📝 lastname: 320 changes
📝 hubspot_owner_id: 66 changes
📝 country: 2 changes
📝 phone: 3 changes
📝 hs_avatar_filemanager_key: 3 changes
📝 mobilephone: 1 changes
🔔 Event: association_change
Count: 841
📦 Object Type: deal
🔔 Event: property_change
Count: 94
Properties:
📝 dealstage: 11 changes
📝 hs_deal_stage_probability: 15 changes
📝 closedate: 16 changes
📝 hs_manual_forecast_category: 13 changes
📝 hs_next_step: 20 changes
📝 amount: 5 changes
📝 dealname: 7 changes
📝 hubspot_owner_id: 2 changes
📝 dealtype: 3 changes
📝 createdate: 2 changes
🔔 Event: creation
Count: 4
🔔 Event: association_change
Count: 13
📦 Object Type: company
🔔 Event: association_change
Count: 844
🔔 Event: property_change
Count: 202
Properties:
📝 country: 54 changes
📝 hubspot_owner_id: 47 changes
📝 domain: 57 changes
📝 name: 43 changes
📝 industry: 1 changes
🔔 Event: creation
Count: 57
INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16.
📊 Webhook Metrics for Config 533 (Connectd - 559)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 720
🔔 Event: property_change
Count: 3906
Properties:
📝 mobilephone: 15 changes
📝 lastname: 766 changes
📝 phone: 699 changes
📝 firstname: 773 changes
📝 email: 725 changes
📝 hubspot_owner_id: 757 changes
📝 jobtitle: 99 changes
📝 country: 72 changes
🔔 Event: association_change
Count: 864
📦 Object Type: deal
🔔 Event: property_change
Count: 3984
Properties:
📝 hs_deal_stage_probability: 1843 changes
📝 dealstage: 1316 changes
📝 closedate: 612 changes
📝 createdate: 7 changes
📝 hubspot_owner_id: 134 changes
📝 amount: 23 changes
📝 amount_in_home_currency: 30 changes
📝 dealname: 15 changes
📝 deal_currency_code: 3 changes
📝 pipeline: 1 changes
🔔 Event: association_change
Count: 780
🔔 Event: creation
Count: 648
📦 Object Type: company
🔔 Event: association_change
Count: 88
INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16.
📊 Webhook Metrics for Config 1006 (Dovetail Software - 1076)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 9
Properties:
📝 hs_manual_forecast_category: 2 changes
📝 hs_deal_stage_probability: 3 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
🔔 Event: creation
Count: 2
📦 Object Type: contact
🔔 Event: property_change
Count: 167
Properties:
📝 associatedcompanyid: 11 changes
📝 lastname: 11 changes
📝 phone: 11 changes
📝 hubspot_owner_id: 83 changes
📝 mobilephone: 9 changes
📝 firstname: 10 changes
📝 country: 13 changes
📝 email: 9 changes
📝 jobtitle: 10 changes
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 25
📦 Object Type: company
🔔 Event: association_change
Count: 27
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 14
Properties:
📝 hubspot_owner_id: 7 changes
📝 phone: 2 changes
📝 name: 1 changes
📝 country: 2 changes
📝 industry: 1 changes
📝 domain: 1 changes
INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16.
📊 Webhook Metrics for Config 154 (Learnerbly - 172)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 2
Properties:
📝 hubspot_owner_id: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 4
📦 Object Type: company
🔔 Event: association_change
Count: 4
📦 Object Type: deal
🔔 Event: property_change
Count: 3
Properties:
📝 amount: 1 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16.
📊 Webhook Metrics for Config 892 (Logiwa - 942)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 55
🔔 Event: property_change
Count: 322
Properties:
📝 jobtitle: 56 changes
📝 lastname: 57 changes
📝 firstname: 59 changes
📝 country: 4 changes
📝 email: 55 changes
📝 hubspot_owner_id: 38 changes
📝 associatedcompanyid: 47 changes
📝 phone: 6 changes
🔔 Event: association_change
Count: 96
📦 Object Type: company
🔔 Event: creation
Count: 16
🔔 Event: property_change
Count: 42
Properties:
📝 name: 21 changes
📝 domain: 16 changes
📝 hubspot_owner_id: 5 changes
🔔 Event: association_change
Count: 96
📦 Object Type: deal
🔔 Event: property_change
Count: 151
Properties:
📝 notes_last_updated: 139 changes
📝 closedate: 3 changes
📝 dealstage: 3 changes
📝 current_wms: 1 changes
📝 hs_deal_stage_probability: 3 changes
📝 amount: 1 changes
📝 hs_manual_forecast_category: 1 changes
INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16.
📊 Webhook Metrics for Config 882 (GoGlobal - 933)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 837
Properties:
📝 hs_next_step: 93 changes
📝 situation: 80 changes
📝 compelling_event: 76 changes
📝 decision_process: 72 changes
📝 decision_criteria: 76 changes
📝 problem: 50 changes
📝 impact: 50 changes
📝 amount: 73 changes
📝 amount_in_home_currency: 63 changes
📝 closedate: 19 changes
📝 dealstage: 39 changes
📝 description: 6 changes
📝 hs_deal_stage_probability: 51 changes
📝 dealname: 22 changes
📝 deal_currency_code: 24 changes
📝 hs_manual_forecast_category: 18 changes
📝 hiring_countries: 4 changes
📝 leadtype: 2 changes
📝 manager_forecast_notes: 10 changes
📝 competitors____please_specify: 1 changes
📝 closed_won_reason_jiminny_ai: 1 changes
📝 client_handover_notes_jiminny_ai: 1 changes
📝 lead_source_deal: 2 changes
📝 hubspot_owner_id: 4 changes
🔔 Event: association_change
Count: 48
📦 Object Type: company
🔔 Event: property_change
Count: 759
Properties:
📝 domain: 148 changes
📝 name: 140 changes
📝 country: 135 changes
📝 phone: 115 changes
📝 industry: 124 changes
📝 hubspot_owner_id: 97 changes
🔔 Event: creation
Count: 147
🔔 Event: association_change
Count: 1369
📦 Object Type: contact
🔔 Event: property_change
Count: 4203
Properties:
📝 lastname: 666 changes
📝 email: 600 changes
📝 hubspot_owner_id: 562 changes
📝 firstname: 608 changes
📝 jobtitle: 555 changes
📝 country: 585 changes
📝 associatedcompanyid: 585 changes
📝 phone: 31 changes
📝 mobilephone: 11 changes
🔔 Event: creation
Count: 600
🔔 Event: association_change
Count: 1349
INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16.
📊 Webhook Metrics for Config 797 (Kodex - 848)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 504
Properties:
📝 phone: 42 changes
📝 firstname: 48 changes
📝 email: 44 changes
📝 lastname: 50 changes
📝 associatedcompanyid: 138 changes
📝 jobtitle: 38 changes
📝 hubspot_owner_id: 103 changes
📝 mobilephone: 37 changes
📝 country: 4 changes
🔔 Event: creation
Count: 44
🔔 Event: association_change
Count: 623
📦 Object Type: company
🔔 Event: association_change
Count: 623
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 74
Properties:
📝 country: 8 changes
📝 name: 9 changes
📝 domain: 12 changes
📝 hubspot_owner_id: 30 changes
📝 industry: 8 changes
📝 phone: 7 changes
📦 Object Type: deal
🔔 Event: association_change
Count: 2
🔔 Event: property_change
Count: 4
Properties:
📝 amount: 1 changes
📝 hubspot_owner_id: 1 changes
📝 closedate: 1 changes
📝 dealname: 1 changes
INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16.
📊 Webhook Metrics for Config 636 (ProofPilot - 657)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 44
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 142
Properties:
📝 associatedcompanyid: 21 changes
📝 hubspot_owner_id: 24 changes
📝 jobtitle: 28 changes
📝 country: 14 changes
📝 lastname: 16 changes
📝 email: 14 changes
📝 phone: 8 changes
📝 firstname: 16 changes
📝 mobilephone: 1 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 8
Properties:
📝 dealtype: 1 changes
📝 amount: 2 changes
📝 closedate: 1 changes
📝 dealname: 2 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 44
INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16.
📊 Webhook Metrics for Config 1063 (Base.com - 1125)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 3464
🔔 Event: property_change
Count: 1320
Properties:
📝 name: 550 changes
📝 domain: 487 changes
📝 hubspot_owner_id: 157 changes
📝 phone: 35 changes
📝 country: 30 changes
📝 industry: 61 changes
🔔 Event: creation
Count: 604
📦 Object Type: contact
🔔 Event: property_change
Count: 8211
Properties:
📝 phone: 489 changes
📝 firstname: 1415 changes
📝 lastname: 1329 changes
📝 email: 1552 changes
📝 country: 400 changes
📝 associatedcompanyid: 1554 changes
📝 hubspot_owner_id: 428 changes
📝 jobtitle: 1026 changes
📝 mobilephone: 18 changes
🔔 Event: creation
Count: 1559
🔔 Event: association_change
Count: 3382
📦 Object Type: deal
🔔 Event: property_change
Count: 469
Properties:
📝 dealstage: 74 changes
📝 hs_deal_stage_probability: 112 changes
📝 closedate: 39 changes
📝 implementation_type: 9 changes
📝 deal_currency_code: 23 changes
📝 minimum_fee: 33 changes
📝 estimated_fulfilment_orders_per_month: 37 changes
📝 hubspot_owner_id: 8 changes
📝 dealtype: 2 changes
📝 amount: 26 changes
📝 monthly_orders_processed_by_base_with_normal_fee: 20 changes
📝 average_order_value: 18 changes
📝 estimated_orders_per_month: 9 changes
📝 dealname: 3 changes
📝 pipeline: 1 changes
📝 dor_principal_ia: 4 changes
📝 objecao_central_ia: 4 changes
📝 proximo_passo_ia: 4 changes
📝 resumo_da_reuniao_ia: 4 changes
📝 categoria_do_portfolio_ia: 3 changes
📝 perfil_comportamental_do_prospect_ia: 4 changes
📝 score_do_vendedor_ia: 4 changes
📝 temperatura_do_deal_ia: 4 changes
📝 nota_da_demo_ia: 4 changes
📝 analise_de_tecnicas_de_vendas_ia: 4 changes
📝 perfil_do_cliente_icp_ia: 4 changes
📝 erp: 8 changes
📝 hub_ia: 2 changes
📝 gap_de_funcionalidade_ia: 2 changes
🔔 Event: association_change
Count: 160
🔔 Event: creation
Count: 41
INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16.
📊 Webhook Metrics for Config 766 (Marsello - 781)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 22
🔔 Event: property_change
Count: 87
Properties:
📝 phone: 5 changes
📝 country: 11 changes
📝 domain: 13 changes
📝 industry: 8 changes
📝 name: 27 changes
📝 hubspot_owner_id: 23 changes
🔔 Event: association_change
Count: 203
📦 Object Type: contact
🔔 Event: property_change
Count: 337
Properties:
📝 jobtitle: 19 changes
📝 hubspot_owner_id: 35 changes
📝 email: 83 changes
📝 associatedcompanyid: 89 changes
📝 mobilephone: 16 changes
📝 phone: 14 changes
📝 country: 17 changes
📝 firstname: 33 changes
📝 lastname: 31 changes
🔔 Event: creation
Count: 24
🔔 Event: association_change
Count: 202
📦 Object Type: deal
🔔 Event: property_change
Count: 16
Properties:
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
📝 dealname: 2 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
📝 sites: 1 changes
📝 customers: 1 changes
📝 deal_icp: 1 changes
📝 integrations: 1 changes
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 3
INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16.
📊 Webhook Metrics for Config 803 (E3 - 854)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 134
🔔 Event: property_change
Count: 5
Properties:
📝 phone: 1 changes
📝 name: 2 changes
📝 domain: 1 changes
📝 hubspot_owner_id: 1 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 367
Properties:
📝 hubspot_owner_id: 64 changes
📝 jobtitle: 36 changes
📝 lastname: 52 changes
📝 firstname: 58 changes
📝 associatedcompanyid: 51 changes
📝 email: 60 changes
📝 phone: 42 changes
📝 mobilephone: 3 changes
📝 country: 1 changes
🔔 Event: creation
Count: 62
🔔 Event: association_change
Count: 124
📦 Object Type: deal
🔔 Event: property_change
Count: 104
Properties:
📝 dealstage: 23 changes
📝 hs_deal_stage_probability: 33 changes
📝 hs_manual_forecast_category: 26 changes
📝 amount: 10 changes
📝 closedate: 11 changes
📝 dealname: 1 changes
🔔 Event: association_change
Count: 42
🔔 Event: creation
Count: 13
INFO Looking for metrics: Config 944 (OneCrew - 1018), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
69492
|
|
69498
|
1599
|
3
|
2026-04-22T08:12:37.746922+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845557746_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
📝 leadtype: 2 changes
📝 manager_fore 📝 leadtype: 2 changes
📝 manager_forecast_notes: 10 changes
📝 competitors____please_specify: 1 changes
📝 closed_won_reason_jiminny_ai: 1 changes
📝 client_handover_notes_jiminny_ai: 1 changes
📝 lead_source_deal: 2 changes
📝 hubspot_owner_id: 4 changes
🔔 Event: association_change
Count: 48
📦 Object Type: company
🔔 Event: property_change
Count: 759
Properties:
📝 domain: 148 changes
📝 name: 140 changes
📝 country: 135 changes
📝 phone: 115 changes
📝 industry: 124 changes
📝 hubspot_owner_id: 97 changes
🔔 Event: creation
Count: 147
🔔 Event: association_change
Count: 1369
📦 Object Type: contact
🔔 Event: property_change
Count: 4203
Properties:
📝 lastname: 666 changes
📝 email: 600 changes
📝 hubspot_owner_id: 562 changes
📝 firstname: 608 changes
📝 jobtitle: 555 changes
📝 country: 585 changes
📝 associatedcompanyid: 585 changes
📝 phone: 31 changes
📝 mobilephone: 11 changes
🔔 Event: creation
Count: 600
🔔 Event: association_change
Count: 1349
INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16.
📊 Webhook Metrics for Config 797 (Kodex - 848)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 504
Properties:
📝 phone: 42 changes
📝 firstname: 48 changes
📝 email: 44 changes
📝 lastname: 50 changes
📝 associatedcompanyid: 138 changes
📝 jobtitle: 38 changes
📝 hubspot_owner_id: 103 changes
📝 mobilephone: 37 changes
📝 country: 4 changes
🔔 Event: creation
Count: 44
🔔 Event: association_change
Count: 623
📦 Object Type: company
🔔 Event: association_change
Count: 623
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 74
Properties:
📝 country: 8 changes
📝 name: 9 changes
📝 domain: 12 changes
📝 hubspot_owner_id: 30 changes
📝 industry: 8 changes
📝 phone: 7 changes
📦 Object Type: deal
🔔 Event: association_change
Count: 2
🔔 Event: property_change
Count: 4
Properties:
📝 amount: 1 changes
📝 hubspot_owner_id: 1 changes
📝 closedate: 1 changes
📝 dealname: 1 changes
INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16.
📊 Webhook Metrics for Config 636 (ProofPilot - 657)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 44
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 142
Properties:
📝 associatedcompanyid: 21 changes
📝 hubspot_owner_id: 24 changes
📝 jobtitle: 28 changes
📝 country: 14 changes
📝 lastname: 16 changes
📝 email: 14 changes
📝 phone: 8 changes
📝 firstname: 16 changes
📝 mobilephone: 1 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 8
Properties:
📝 dealtype: 1 changes
📝 amount: 2 changes
📝 closedate: 1 changes
📝 dealname: 2 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 44
INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16.
📊 Webhook Metrics for Config 1063 (Base.com - 1125)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 3464
🔔 Event: property_change
Count: 1320
Properties:
📝 name: 550 changes
📝 domain: 487 changes
📝 hubspot_owner_id: 157 changes
📝 phone: 35 changes
📝 country: 30 changes
📝 industry: 61 changes
🔔 Event: creation
Count: 604
📦 Object Type: contact
🔔 Event: property_change
Count: 8211
Properties:
📝 phone: 489 changes
📝 firstname: 1415 changes
📝 lastname: 1329 changes
📝 email: 1552 changes
📝 country: 400 changes
📝 associatedcompanyid: 1554 changes
📝 hubspot_owner_id: 428 changes
📝 jobtitle: 1026 changes
📝 mobilephone: 18 changes
🔔 Event: creation
Count: 1559
🔔 Event: association_change
Count: 3382
📦 Object Type: deal
🔔 Event: property_change
Count: 469
Properties:
📝 dealstage: 74 changes
📝 hs_deal_stage_probability: 112 changes
📝 closedate: 39 changes
📝 implementation_type: 9 changes
📝 deal_currency_code: 23 changes
📝 minimum_fee: 33 changes
📝 estimated_fulfilment_orders_per_month: 37 changes
📝 hubspot_owner_id: 8 changes
📝 dealtype: 2 changes
📝 amount: 26 changes
📝 monthly_orders_processed_by_base_with_normal_fee: 20 changes
📝 average_order_value: 18 changes
📝 estimated_orders_per_month: 9 changes
📝 dealname: 3 changes
📝 pipeline: 1 changes
📝 dor_principal_ia: 4 changes
📝 objecao_central_ia: 4 changes
📝 proximo_passo_ia: 4 changes
📝 resumo_da_reuniao_ia: 4 changes
📝 categoria_do_portfolio_ia: 3 changes
📝 perfil_comportamental_do_prospect_ia: 4 changes
📝 score_do_vendedor_ia: 4 changes
📝 temperatura_do_deal_ia: 4 changes
📝 nota_da_demo_ia: 4 changes
📝 analise_de_tecnicas_de_vendas_ia: 4 changes
📝 perfil_do_cliente_icp_ia: 4 changes
📝 erp: 8 changes
📝 hub_ia: 2 changes
📝 gap_de_funcionalidade_ia: 2 changes
🔔 Event: association_change
Count: 160
🔔 Event: creation
Count: 41
INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16.
📊 Webhook Metrics for Config 766 (Marsello - 781)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 22
🔔 Event: property_change
Count: 87
Properties:
📝 phone: 5 changes
📝 country: 11 changes
📝 domain: 13 changes
📝 industry: 8 changes
📝 name: 27 changes
📝 hubspot_owner_id: 23 changes
🔔 Event: association_change
Count: 203
📦 Object Type: contact
🔔 Event: property_change
Count: 337
Properties:
📝 jobtitle: 19 changes
📝 hubspot_owner_id: 35 changes
📝 email: 83 changes
📝 associatedcompanyid: 89 changes
📝 mobilephone: 16 changes
📝 phone: 14 changes
📝 country: 17 changes
📝 firstname: 33 changes
📝 lastname: 31 changes
🔔 Event: creation
Count: 24
🔔 Event: association_change
Count: 202
📦 Object Type: deal
🔔 Event: property_change
Count: 16
Properties:
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
📝 dealname: 2 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
📝 sites: 1 changes
📝 customers: 1 changes
📝 deal_icp: 1 changes
📝 integrations: 1 changes
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 3
INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16.
📊 Webhook Metrics for Config 803 (E3 - 854)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 134
🔔 Event: property_change
Count: 5
Properties:
📝 phone: 1 changes
📝 name: 2 changes
📝 domain: 1 changes
📝 hubspot_owner_id: 1 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 367
Properties:
📝 hubspot_owner_id: 64 changes
📝 jobtitle: 36 changes
📝 lastname: 52 changes
📝 firstname: 58 changes
📝 associatedcompanyid: 51 changes
📝 email: 60 changes
📝 phone: 42 changes
📝 mobilephone: 3 changes
📝 country: 1 changes
🔔 Event: creation
Count: 62
🔔 Event: association_change
Count: 124
📦 Object Type: deal
🔔 Event: property_change
Count: 104
Properties:
📝 dealstage: 23 changes
📝 hs_deal_stage_probability: 33 changes
📝 hs_manual_forecast_category: 26 changes
📝 amount: 10 changes
📝 closedate: 11 changes
📝 dealname: 1 changes
🔔 Event: association_change
Count: 42
🔔 Event: creation
Count: 13
INFO Looking for metrics: Config 944 (OneCrew - 1018), Date 2026-04-16.
📊 Webhook Metrics for Config 944 (OneCrew - 1018)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 46
🔔 Event: creation
Count: 10
🔔 Event: property_change
Count: 134
Properties:
📝 phone: 3 changes
📝 name: 10 changes
📝 country: 9 changes
📝 domain: 9 changes
📝 hubspot_owner_id: 101 changes
📝 industry: 2 changes
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: association_change
Count: 9
🔔 Event: property_change
Count: 3950
Properties:
📝 pain_points_and_deal_planning: 549 changes
📝 next_steps: 541 changes
📝 objections_and_blockers: 520 changes
📝 crm: 68 changes
📝 proposal_tool: 89 changes
📝 map_tool: 15 changes
📝 total_in_office: 221 changes
📝 business_impact_jiminny: 495 changes
📝 contact_information_jiminny: 501 changes
📝 state_region: 293 changes
📝 total_field_leads: 138 changes
📝 users__crew: 129 changes
📝 closedate: 3 changes
📝 dealstage: 7 changes
📝 hs_deal_stage_probability: 10 changes
📝 hs_manual_forecast_category: 5 changes
📝 accounting_software: 97 changes
📝 scheduling_tool: 14 changes
📝 city: 252 changes
📝 estimating_tool: 1 changes
📝 amount: 2 changes
📦 Object Type: contact
🔔 Event: creation
Count: 87
🔔 Event: property_change
Count: 727
Properties:
📝 lastname: 82 changes
📝 phone: 24 changes
📝 email: 84 changes
📝 firstname: 87 changes
📝 jobtitle: 81 changes
📝 hubspot_owner_id: 248 changes
📝 mobilephone: 82 changes
📝 country: 19 changes
📝 associatedcompanyid: 20 changes
🔔 Event: association_change
Count: 43
INFO Looking for metrics: Config 896 (Mintago - 946), Date 2026-04-16.
📊 Webhook Metrics for Config 896 (Mintago - 946)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 1668
🔔 Event: creation
Count: 217
🔔 Event: property_change
Count: 890
Properties:
📝 hubspot_owner_id: 50 changes
📝 industry: 150 changes
📝 phone: 120 changes
📝 domain: 212 changes
📝 name: 186 changes
📝 country: 172 changes
📦 Object Type: contact
🔔 Event: creation
Count: 984
🔔 Event: association_change
Count: 2039
🔔 Event: property_change
Count: 6980
Properties:
📝 phone: 824 changes
📝 hubspot_owner_id: 691 changes
📝 jobtitle: 990 changes
📝 email: 861 changes
📝 lastname: 1006 changes
📝 firstname: 986 changes
📝 associatedcompanyid: 820 changes
📝 country: 20 changes
📝 mobilephone: 782 changes
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 419
🔔 Event: property_change
Count: 153
Properties:
📝 hubspot_owner_id: 6 changes
📝 hs_deal_stage_probability: 41 changes
📝 dealname: 8 changes
📝 hs_next_step: 3 changes
📝 dealstage: 29 changes
📝 closedate: 24 changes
📝 hs_manual_forecast_category: 23 changes
📝 deal_currency_code: 6 changes
📝 amount_in_home_currency: 13 changes
INFO Looking for metrics: Config 908 (JPA Workspaces - 956), Date 2026-04-16.
📊 Webhook Metrics for Config 908 (JPA Workspaces - 956)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: property_change
Count: 14
Properties:
📝 dealstage: 4 changes
📝 hs_deal_stage_probability: 7 changes
📝 hs_manual_forecast_category: 3 changes
🔔 Event: association_change
Count: 9
📦 Object Type: company
🔔 Event: property_change
Count: 447
Properties:
📝 hubspot_owner_id: 446 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 10
📦 Object Type: contact
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 7
🔔 Event: property_change
Count: 721
Properties:
📝 lastname: 9 changes
📝 email: 12 changes
📝 firstname: 12 changes
📝 mobilephone: 4 changes
📝 hubspot_owner_id: 675 changes
📝 jobtitle: 2 changes
📝 phone: 4 changes
📝 associatedcompanyid: 2 changes
📝 country: 1 changes
INFO Looking for metrics: Config 171 (GaggleAMP Inc. - 189), Date 2026-04-16.
📊 Webhook Metrics for Config 171 (GaggleAMP Inc. - 189)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 175
Properties:
📝 hubspot_owner_id: 98 changes
📝 name: 14 changes
📝 country: 14 changes
📝 industry: 22 changes
📝 domain: 15 changes
📝 phone: 12 changes
🔔 Event: creation
Count: 15
🔔 Event: association_change
Count: 424
📦 Object Type: contact
🔔 Event: creation
Count: 212
🔔 Event: property_change
Count: 1862
Properties:
📝 hubspot_owner_id: 356 changes
📝 country: 231 changes
📝 lastname: 213 changes
📝 jobtitle: 214 changes
📝 email: 212 changes
📝 firstname: 212 changes
📝 associatedcompanyid: 212 changes
📝 mobilephone: 3 changes
📝 phone: 209 changes
🔔 Event: association_change
Count: 425
📦 Object Type: deal
🔔 Event: property_change
Count: 8
Properties:
📝 dealstage: 2 changes
📝 hs_deal_stage_probability: 2 changes
📝 closedate: 2 changes
📝 hs_manual_forecast_category: 2 changes
🔔 Event: association_change
Count: 1
INFO Looking for metrics: Config 880 (Immutable - 931), Date 2026-04-16.
📊 Webhook Metrics for Config 880 (Immutable - 931)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 4
Properties:
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
🔔 Event: association_change
Count: 21
📦 Object Type: contact
🔔 Event: association_change
Count: 1831
🔔 Event: creation
Count: 736
🔔 Event: property_change
Count: 3020
Properties:
📝 lastname: 536 changes
📝 hubspot_owner_id: 169 changes
📝 jobtitle: 723 changes
📝 country: 155 changes
📝 firstname: 544 changes
📝 email: 448 changes
📝 associatedcompanyid: 441 changes
📝 phone: 2 changes
📝 mobilephone: 2 changes
📦 Object Type: company
🔔 Event: association_change
Count: 1818
🔔 Event: property_change
Count: 308
Properties:
📝 hubspot_owner_id: 8 changes
📝 name: 139 changes
📝 domain: 158 changes
📝 country: 1 changes
📝 industry: 1 changes
📝 phone: 1 changes
🔔 Event: creation
Count: 158
INFO Looking for metrics: Config 877 (GroWrk Remote - 927), Date 2026-04-16.
📊 Webhook Metrics for Config 877 (GroWrk Remote - 927)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 25
Properties:
📝 industry: 5 changes
📝 name: 5 changes
📝 country: 4 changes
📝 domain: 4 changes
📝 hubspot_owner_id: 6 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 44
🔔 Event: creation
Count: 5
📦 Object Type: deal
🔔 Event: property_change
Count: 82
Properties:
📝 hs_deal_stage_probability: 19 changes
📝 hubspot_owner_id: 5 changes
📝 company_name: 8 changes
📝 amount: 12 changes
📝 dealstage: 8 changes
📝 closedate: 9 changes
📝 deal_currency_code: 9 changes
📝 dealname: 4 changes
📝 agreement_model: 4 changes
📝 is_the_prospect_looking_at_competitors_: 2 changes
📝 is_the_prospect_using_a_competitor_: 2 changes
🔔 Event: association_change
Count: 58
🔔 Event: creation
Count: 11
📦 Object Type: contact
🔔 Event: association_change
Count: 58
🔔 Event: property_change
Count: 49
Properties:
📝 country: 3 changes
📝 email: 9 changes
📝 lastname: 8 changes
📝 associatedcompanyid: 10 changes
📝 firstname: 6 changes
📝 hubspot_owner_id: 9 changes
📝 jobtitle: 3 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 10
INFO Looking for metrics: Config 928 (Portless - 995), Date 2026-04-16.
📊 Webhook Metrics for Config 928 (Portless - 995)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 283
Properties:
📝 firstname: 31 changes
📝 lastname: 31 changes
📝 email: 30 changes
📝 country: 25 changes
📝 jobtitle: 26 changes
📝 hubspot_owner_id: 48 changes
📝 associatedcompanyid: 50 changes
📝 mobilephone: 26 changes
📝 phone: 16 changes
🔔 Event: association_change
Count: 182
🔔 Event: creation
Count: 29
📦 Object Type: company
🔔 Event: association_change
Count: 188
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 93
Properties:
📝 hubspot_owner_id: 25 changes
📝 domain: 18 changes
📝 name: 17 changes
📝 industry: 13 changes
📝 phone: 8 changes
📝 country: 12 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 56
Properties:
📝 dealstage: 13 changes
📝 hs_deal_stage_probability: 15 changes
📝 closedate: 9 changes
📝 amount: 11 changes
📝 deal_currency_code: 4 changes
📝 hs_next_step: 1 changes
📝 pipeline: 1 changes
📝 dealname: 1 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: creation
Count: 4
🔔 Event: association_change
Count: 18
INFO Looking for metrics: Config 150 (Nudge Global Limited - 168), Date 2026-04-16.
📊 Webhook Metrics for Config 150 (Nudge Global Limited - 168)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 27
🔔 Event: creation
Count: 8
🔔 Event: property_change
Count: 430
Properties:
📝 jobtitle: 11 changes
📝 firstname: 9 changes
📝 mobilephone: 6 changes
📝 lastname: 9 changes
📝 hubspot_owner_id: 224 changes
📝 associatedcompanyid: 10 changes
📝 email: 12 changes
📝 country: 147 changes
📝 phone: 2 changes
📦 Object Type: company
🔔 Event: association_change
Count: 30
🔔 Event: creation
Count: 3
🔔 Event: property_change
Count: 7
Properties:
📝 domain: 3 changes
📝 name: 2 changes
📝 hubspot_owner_id: 2 changes
📦 Object Type: deal
🔔 Event: creation
Count: 4
🔔 Event: association_change
Count: 13
🔔 Event: property_change
Count: 25
Properties:
📝 hs_deal_stage_probability: 10 changes
📝 dealstage: 6 changes
📝 hs_manual_forecast_category: 6 changes
📝 amount: 1 changes
📝 closedate: 2 changes
INFO Looking for metrics: Config 583 (One Core Media - 608), Date 2026-04-16.
📊 Webhook Metrics for Config 583 (One Core Media - 608)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 11
Properties:
📝 domain: 4 changes
📝 name: 4 changes
📝 hubspot_owner_id: 3 changes
🔔 Event: association_change
Count: 16
📦 Object Type: contact
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 16
🔔 Event: property_change
Count: 42
Properties:
📝 phone: 4 changes
📝 firstname: 5 changes
📝 lastname: 5 changes
📝 hubspot_owner_id: 7 changes
📝 email: 9 changes
📝 associatedcompanyid: 8 changes
📝 jobtitle: 2 changes
📝 mobilephone: 2 changes
INFO Looking for metrics: Config 913 (Kyloe Partners - 456), Date 2026-04-16.
📊 Webhook Metrics for Config 913 (Kyloe Partners - 456)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 160
🔔 Event: property_change
Count: 1
Properties:
📝 phone: 1 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 54
Properties:
📝 hubspot_owner_id: 6 changes
📝 phone: 4 changes
📝 jobtitle: 7 changes
📝 country: 2 changes
📝 email: 4 changes
📝 associatedcompanyid: 21 changes
📝 firstname: 5 changes
📝 lastname: 4 changes
📝 mobilephone: 1 changes
🔔 Event: association_change
Count: 98
🔔 Event: creation
Count: 3
📦 Object Type: deal
🔔 Event: property_change
Count: 69
Properties:
📝 dealstage: 25 changes
📝 hs_deal_stage_probability: 15 changes
📝 hs_manual_forecast_category: 2 changes
📝 amount: 1 changes
📝 hs_closed_amount_in_home_currency: 3 changes
📝 closedate: 8 changes
📝 hs_closed_deal_close_date: 8 changes
📝 dealtype: 3 changes
📝 hubspot_owner_id: 1 changes
📝 app: 1 changes
📝 deal_currency_code: 1 changes
📝 dealname: 1 changes
🔔 Event: association_change
Count: 74
🔔 Event: creation
Count: 4
INFO Looking for metrics: Config 530 (InnoFund - 556), Date 2026-04-16.
📊 Webhook Metrics for Config 530 (InnoFund - 556)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 147
🔔 Event: creation
Count: 66
🔔 Event: property_change
Count: 422
Properties:
📝 phone: 53 changes
📝 hubspot_owner_id: 66 changes
📝 lastname: 56 changes
📝 jobtitle: 56 changes
📝 firstname: 66 changes
📝 associatedcompanyid: 66 changes
📝 email: 22 changes
📝 mobilephone: 37 changes
📦 Object Type: company
🔔 Event: property_change
Count: 130
Properties:
📝 domain: 45 changes
📝 name: 42 changes
📝 hubspot_owner_id: 40 changes
📝 phone: 3 changes
🔔 Event: association_change
Count: 154
🔔 Event: creation
Count: 45
📦 Object Type: deal
🔔 Event: creation
Count: 4
🔔 Event: association_change
Count: 9
🔔 Event: property_change
Count: 5
Properties:
📝 hs_deal_stage_probability: 4 changes
📝 amount: 1 changes
INFO Looking for metrics: Config 270 (Heka Happy - 288), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"📝\u0000 leadtype: 2 changes\n 📝\u0000 manager_forecast_notes: 10 changes\n 📝\u0000 competitors____please_specify: 1 changes\n 📝\u0000 closed_won_reason_jiminny_ai: 1 changes\n 📝\u0000 client_handover_notes_jiminny_ai: 1 changes\n 📝\u0000 lead_source_deal: 2 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n\n 🔔\u0000 Event: association_change\n Count: 48\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 759\n Properties:\n 📝\u0000 domain: 148 changes\n 📝\u0000 name: 140 changes\n 📝\u0000 country: 135 changes\n 📝\u0000 phone: 115 changes\n 📝\u0000 industry: 124 changes\n 📝\u0000 hubspot_owner_id: 97 changes\n\n 🔔\u0000 Event: creation\n Count: 147\n\n 🔔\u0000 Event: association_change\n Count: 1369\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 4203\n Properties:\n 📝\u0000 lastname: 666 changes\n 📝\u0000 email: 600 changes\n 📝\u0000 hubspot_owner_id: 562 changes\n 📝\u0000 firstname: 608 changes\n 📝\u0000 jobtitle: 555 changes\n 📝\u0000 country: 585 changes\n 📝\u0000 associatedcompanyid: 585 changes\n 📝\u0000 phone: 31 changes\n 📝\u0000 mobilephone: 11 changes\n\n 🔔\u0000 Event: creation\n Count: 600\n\n 🔔\u0000 Event: association_change\n Count: 1349\n\n\n INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 797 (Kodex - 848)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 504\n Properties:\n 📝\u0000 phone: 42 changes\n 📝\u0000 firstname: 48 changes\n 📝\u0000 email: 44 changes\n 📝\u0000 lastname: 50 changes\n 📝\u0000 associatedcompanyid: 138 changes\n 📝\u0000 jobtitle: 38 changes\n 📝\u0000 hubspot_owner_id: 103 changes\n 📝\u0000 mobilephone: 37 changes\n 📝\u0000 country: 4 changes\n\n 🔔\u0000 Event: creation\n Count: 44\n\n 🔔\u0000 Event: association_change\n Count: 623\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 623\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 74\n Properties:\n 📝\u0000 country: 8 changes\n 📝\u0000 name: 9 changes\n 📝\u0000 domain: 12 changes\n 📝\u0000 hubspot_owner_id: 30 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 phone: 7 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 4\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 1 changes\n\n\n INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 636 (ProofPilot - 657)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 44\n\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 142\n Properties:\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 hubspot_owner_id: 24 changes\n 📝\u0000 jobtitle: 28 changes\n 📝\u0000 country: 14 changes\n 📝\u0000 lastname: 16 changes\n 📝\u0000 email: 14 changes\n 📝\u0000 phone: 8 changes\n 📝\u0000 firstname: 16 changes\n 📝\u0000 mobilephone: 1 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 dealtype: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 44\n\n\n INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1063 (Base.com - 1125)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 3464\n\n 🔔\u0000 Event: property_change\n Count: 1320\n Properties:\n 📝\u0000 name: 550 changes\n 📝\u0000 domain: 487 changes\n 📝\u0000 hubspot_owner_id: 157 changes\n 📝\u0000 phone: 35 changes\n 📝\u0000 country: 30 changes\n 📝\u0000 industry: 61 changes\n\n 🔔\u0000 Event: creation\n Count: 604\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 8211\n Properties:\n 📝\u0000 phone: 489 changes\n 📝\u0000 firstname: 1415 changes\n 📝\u0000 lastname: 1329 changes\n 📝\u0000 email: 1552 changes\n 📝\u0000 country: 400 changes\n 📝\u0000 associatedcompanyid: 1554 changes\n 📝\u0000 hubspot_owner_id: 428 changes\n 📝\u0000 jobtitle: 1026 changes\n 📝\u0000 mobilephone: 18 changes\n\n 🔔\u0000 Event: creation\n Count: 1559\n\n 🔔\u0000 Event: association_change\n Count: 3382\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 469\n Properties:\n 📝\u0000 dealstage: 74 changes\n 📝\u0000 hs_deal_stage_probability: 112 changes\n 📝\u0000 closedate: 39 changes\n 📝\u0000 implementation_type: 9 changes\n 📝\u0000 deal_currency_code: 23 changes\n 📝\u0000 minimum_fee: 33 changes\n 📝\u0000 estimated_fulfilment_orders_per_month: 37 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 dealtype: 2 changes\n 📝\u0000 amount: 26 changes\n 📝\u0000 monthly_orders_processed_by_base_with_normal_fee: 20 changes\n 📝\u0000 average_order_value: 18 changes\n 📝\u0000 estimated_orders_per_month: 9 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 dor_principal_ia: 4 changes\n 📝\u0000 objecao_central_ia: 4 changes\n 📝\u0000 proximo_passo_ia: 4 changes\n 📝\u0000 resumo_da_reuniao_ia: 4 changes\n 📝\u0000 categoria_do_portfolio_ia: 3 changes\n 📝\u0000 perfil_comportamental_do_prospect_ia: 4 changes\n 📝\u0000 score_do_vendedor_ia: 4 changes\n 📝\u0000 temperatura_do_deal_ia: 4 changes\n 📝\u0000 nota_da_demo_ia: 4 changes\n 📝\u0000 analise_de_tecnicas_de_vendas_ia: 4 changes\n 📝\u0000 perfil_do_cliente_icp_ia: 4 changes\n 📝\u0000 erp: 8 changes\n 📝\u0000 hub_ia: 2 changes\n 📝\u0000 gap_de_funcionalidade_ia: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 160\n\n 🔔\u0000 Event: creation\n Count: 41\n\n\n INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 766 (Marsello - 781)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 22\n\n 🔔\u0000 Event: property_change\n Count: 87\n Properties:\n 📝\u0000 phone: 5 changes\n 📝\u0000 country: 11 changes\n 📝\u0000 domain: 13 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 name: 27 changes\n 📝\u0000 hubspot_owner_id: 23 changes\n\n 🔔\u0000 Event: association_change\n Count: 203\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 337\n Properties:\n 📝\u0000 jobtitle: 19 changes\n 📝\u0000 hubspot_owner_id: 35 changes\n 📝\u0000 email: 83 changes\n 📝\u0000 associatedcompanyid: 89 changes\n 📝\u0000 mobilephone: 16 changes\n 📝\u0000 phone: 14 changes\n 📝\u0000 country: 17 changes\n 📝\u0000 firstname: 33 changes\n 📝\u0000 lastname: 31 changes\n\n 🔔\u0000 Event: creation\n Count: 24\n\n 🔔\u0000 Event: association_change\n Count: 202\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 16\n Properties:\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 sites: 1 changes\n 📝\u0000 customers: 1 changes\n 📝\u0000 deal_icp: 1 changes\n 📝\u0000 integrations: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n\n INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 803 (E3 - 854)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 134\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 phone: 1 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 domain: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 367\n Properties:\n 📝\u0000 hubspot_owner_id: 64 changes\n 📝\u0000 jobtitle: 36 changes\n 📝\u0000 lastname: 52 changes\n 📝\u0000 firstname: 58 changes\n 📝\u0000 associatedcompanyid: 51 changes\n 📝\u0000 email: 60 changes\n 📝\u0000 phone: 42 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 62\n\n 🔔\u0000 Event: association_change\n Count: 124\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 104\n Properties:\n 📝\u0000 dealstage: 23 changes\n 📝\u0000 hs_deal_stage_probability: 33 changes\n 📝\u0000 hs_manual_forecast_category: 26 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 closedate: 11 changes\n 📝\u0000 dealname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 42\n\n 🔔\u0000 Event: creation\n Count: 13\n\n\n INFO Looking for metrics: Config 944 (OneCrew - 1018), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 944 (OneCrew - 1018)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 46\n\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: property_change\n Count: 134\n Properties:\n 📝\u0000 phone: 3 changes\n 📝\u0000 name: 10 changes\n 📝\u0000 country: 9 changes\n 📝\u0000 domain: 9 changes\n 📝\u0000 hubspot_owner_id: 101 changes\n 📝\u0000 industry: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 🔔\u0000 Event: property_change\n Count: 3950\n Properties:\n 📝\u0000 pain_points_and_deal_planning: 549 changes\n 📝\u0000 next_steps: 541 changes\n 📝\u0000 objections_and_blockers: 520 changes\n 📝\u0000 crm: 68 changes\n 📝\u0000 proposal_tool: 89 changes\n 📝\u0000 map_tool: 15 changes\n 📝\u0000 total_in_office: 221 changes\n 📝\u0000 business_impact_jiminny: 495 changes\n 📝\u0000 contact_information_jiminny: 501 changes\n 📝\u0000 state_region: 293 changes\n 📝\u0000 total_field_leads: 138 changes\n 📝\u0000 users__crew: 129 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 hs_deal_stage_probability: 10 changes\n 📝\u0000 hs_manual_forecast_category: 5 changes\n 📝\u0000 accounting_software: 97 changes\n 📝\u0000 scheduling_tool: 14 changes\n 📝\u0000 city: 252 changes\n 📝\u0000 estimating_tool: 1 changes\n 📝\u0000 amount: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 87\n\n 🔔\u0000 Event: property_change\n Count: 727\n Properties:\n 📝\u0000 lastname: 82 changes\n 📝\u0000 phone: 24 changes\n 📝\u0000 email: 84 changes\n 📝\u0000 firstname: 87 changes\n 📝\u0000 jobtitle: 81 changes\n 📝\u0000 hubspot_owner_id: 248 changes\n 📝\u0000 mobilephone: 82 changes\n 📝\u0000 country: 19 changes\n 📝\u0000 associatedcompanyid: 20 changes\n\n 🔔\u0000 Event: association_change\n Count: 43\n\n\n INFO Looking for metrics: Config 896 (Mintago - 946), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 896 (Mintago - 946)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 1668\n\n 🔔\u0000 Event: creation\n Count: 217\n\n 🔔\u0000 Event: property_change\n Count: 890\n Properties:\n 📝\u0000 hubspot_owner_id: 50 changes\n 📝\u0000 industry: 150 changes\n 📝\u0000 phone: 120 changes\n 📝\u0000 domain: 212 changes\n 📝\u0000 name: 186 changes\n 📝\u0000 country: 172 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 984\n\n 🔔\u0000 Event: association_change\n Count: 2039\n\n 🔔\u0000 Event: property_change\n Count: 6980\n Properties:\n 📝\u0000 phone: 824 changes\n 📝\u0000 hubspot_owner_id: 691 changes\n 📝\u0000 jobtitle: 990 changes\n 📝\u0000 email: 861 changes\n 📝\u0000 lastname: 1006 changes\n 📝\u0000 firstname: 986 changes\n 📝\u0000 associatedcompanyid: 820 changes\n 📝\u0000 country: 20 changes\n 📝\u0000 mobilephone: 782 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 419\n\n 🔔\u0000 Event: property_change\n Count: 153\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 hs_deal_stage_probability: 41 changes\n 📝\u0000 dealname: 8 changes\n 📝\u0000 hs_next_step: 3 changes\n 📝\u0000 dealstage: 29 changes\n 📝\u0000 closedate: 24 changes\n 📝\u0000 hs_manual_forecast_category: 23 changes\n 📝\u0000 deal_currency_code: 6 changes\n 📝\u0000 amount_in_home_currency: 13 changes\n\n\n INFO Looking for metrics: Config 908 (JPA Workspaces - 956), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 908 (JPA Workspaces - 956)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 dealstage: 4 changes\n 📝\u0000 hs_deal_stage_probability: 7 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 447\n Properties:\n 📝\u0000 hubspot_owner_id: 446 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 7\n\n 🔔\u0000 Event: property_change\n Count: 721\n Properties:\n 📝\u0000 lastname: 9 changes\n 📝\u0000 email: 12 changes\n 📝\u0000 firstname: 12 changes\n 📝\u0000 mobilephone: 4 changes\n 📝\u0000 hubspot_owner_id: 675 changes\n 📝\u0000 jobtitle: 2 changes\n 📝\u0000 phone: 4 changes\n 📝\u0000 associatedcompanyid: 2 changes\n 📝\u0000 country: 1 changes\n\n\n INFO Looking for metrics: Config 171 (GaggleAMP Inc. - 189), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 171 (GaggleAMP Inc. - 189)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 175\n Properties:\n 📝\u0000 hubspot_owner_id: 98 changes\n 📝\u0000 name: 14 changes\n 📝\u0000 country: 14 changes\n 📝\u0000 industry: 22 changes\n 📝\u0000 domain: 15 changes\n 📝\u0000 phone: 12 changes\n\n 🔔\u0000 Event: creation\n Count: 15\n\n 🔔\u0000 Event: association_change\n Count: 424\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 212\n\n 🔔\u0000 Event: property_change\n Count: 1862\n Properties:\n 📝\u0000 hubspot_owner_id: 356 changes\n 📝\u0000 country: 231 changes\n 📝\u0000 lastname: 213 changes\n 📝\u0000 jobtitle: 214 changes\n 📝\u0000 email: 212 changes\n 📝\u0000 firstname: 212 changes\n 📝\u0000 associatedcompanyid: 212 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 phone: 209 changes\n\n 🔔\u0000 Event: association_change\n Count: 425\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 dealstage: 2 changes\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 closedate: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 1\n\n\n INFO Looking for metrics: Config 880 (Immutable - 931), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 880 (Immutable - 931)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 4\n Properties:\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 21\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 1831\n\n 🔔\u0000 Event: creation\n Count: 736\n\n 🔔\u0000 Event: property_change\n Count: 3020\n Properties:\n 📝\u0000 lastname: 536 changes\n 📝\u0000 hubspot_owner_id: 169 changes\n 📝\u0000 jobtitle: 723 changes\n 📝\u0000 country: 155 changes\n 📝\u0000 firstname: 544 changes\n 📝\u0000 email: 448 changes\n 📝\u0000 associatedcompanyid: 441 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 mobilephone: 2 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 1818\n\n 🔔\u0000 Event: property_change\n Count: 308\n Properties:\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 name: 139 changes\n 📝\u0000 domain: 158 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 158\n\n\n INFO Looking for metrics: Config 877 (GroWrk Remote - 927), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 877 (GroWrk Remote - 927)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 25\n Properties:\n 📝\u0000 industry: 5 changes\n 📝\u0000 name: 5 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 domain: 4 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 44\n\n 🔔\u0000 Event: creation\n Count: 5\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 82\n Properties:\n 📝\u0000 hs_deal_stage_probability: 19 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 company_name: 8 changes\n 📝\u0000 amount: 12 changes\n 📝\u0000 dealstage: 8 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 deal_currency_code: 9 changes\n 📝\u0000 dealname: 4 changes\n 📝\u0000 agreement_model: 4 changes\n 📝\u0000 is_the_prospect_looking_at_competitors_: 2 changes\n 📝\u0000 is_the_prospect_using_a_competitor_: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 58\n\n 🔔\u0000 Event: creation\n Count: 11\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 58\n\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 country: 3 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 lastname: 8 changes\n 📝\u0000 associatedcompanyid: 10 changes\n 📝\u0000 firstname: 6 changes\n 📝\u0000 hubspot_owner_id: 9 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 10\n\n\n INFO Looking for metrics: Config 928 (Portless - 995), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 928 (Portless - 995)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 283\n Properties:\n 📝\u0000 firstname: 31 changes\n 📝\u0000 lastname: 31 changes\n 📝\u0000 email: 30 changes\n 📝\u0000 country: 25 changes\n 📝\u0000 jobtitle: 26 changes\n 📝\u0000 hubspot_owner_id: 48 changes\n 📝\u0000 associatedcompanyid: 50 changes\n 📝\u0000 mobilephone: 26 changes\n 📝\u0000 phone: 16 changes\n\n 🔔\u0000 Event: association_change\n Count: 182\n\n 🔔\u0000 Event: creation\n Count: 29\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 188\n\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 93\n Properties:\n 📝\u0000 hubspot_owner_id: 25 changes\n 📝\u0000 domain: 18 changes\n 📝\u0000 name: 17 changes\n 📝\u0000 industry: 13 changes\n 📝\u0000 phone: 8 changes\n 📝\u0000 country: 12 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 56\n Properties:\n 📝\u0000 dealstage: 13 changes\n 📝\u0000 hs_deal_stage_probability: 15 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 amount: 11 changes\n 📝\u0000 deal_currency_code: 4 changes\n 📝\u0000 hs_next_step: 1 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 dealname: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 🔔\u0000 Event: association_change\n Count: 18\n\n\n INFO Looking for metrics: Config 150 (Nudge Global Limited - 168), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 150 (Nudge Global Limited - 168)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: creation\n Count: 8\n\n 🔔\u0000 Event: property_change\n Count: 430\n Properties:\n 📝\u0000 jobtitle: 11 changes\n 📝\u0000 firstname: 9 changes\n 📝\u0000 mobilephone: 6 changes\n 📝\u0000 lastname: 9 changes\n 📝\u0000 hubspot_owner_id: 224 changes\n 📝\u0000 associatedcompanyid: 10 changes\n 📝\u0000 email: 12 changes\n 📝\u0000 country: 147 changes\n 📝\u0000 phone: 2 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 30\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 7\n Properties:\n 📝\u0000 domain: 3 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 4\n\n 🔔\u0000 Event: association_change\n Count: 13\n\n 🔔\u0000 Event: property_change\n Count: 25\n Properties:\n 📝\u0000 hs_deal_stage_probability: 10 changes\n 📝\u0000 dealstage: 6 changes\n 📝\u0000 hs_manual_forecast_category: 6 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 closedate: 2 changes\n\n\n INFO Looking for metrics: Config 583 (One Core Media - 608), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 583 (One Core Media - 608)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 domain: 4 changes\n 📝\u0000 name: 4 changes\n 📝\u0000 hubspot_owner_id: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 42\n Properties:\n 📝\u0000 phone: 4 changes\n 📝\u0000 firstname: 5 changes\n 📝\u0000 lastname: 5 changes\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 associatedcompanyid: 8 changes\n 📝\u0000 jobtitle: 2 changes\n 📝\u0000 mobilephone: 2 changes\n\n\n INFO Looking for metrics: Config 913 (Kyloe Partners - 456), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 913 (Kyloe Partners - 456)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 160\n\n 🔔\u0000 Event: property_change\n Count: 1\n Properties:\n 📝\u0000 phone: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 54\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 phone: 4 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 email: 4 changes\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 firstname: 5 changes\n 📝\u0000 lastname: 4 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 98\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 69\n Properties:\n 📝\u0000 dealstage: 25 changes\n 📝\u0000 hs_deal_stage_probability: 15 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hs_closed_amount_in_home_currency: 3 changes\n 📝\u0000 closedate: 8 changes\n 📝\u0000 hs_closed_deal_close_date: 8 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 app: 1 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 dealname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 74\n\n 🔔\u0000 Event: creation\n Count: 4\n\n\n INFO Looking for metrics: Config 530 (InnoFund - 556), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 530 (InnoFund - 556)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 147\n\n 🔔\u0000 Event: creation\n Count: 66\n\n 🔔\u0000 Event: property_change\n Count: 422\n Properties:\n 📝\u0000 phone: 53 changes\n 📝\u0000 hubspot_owner_id: 66 changes\n 📝\u0000 lastname: 56 changes\n 📝\u0000 jobtitle: 56 changes\n 📝\u0000 firstname: 66 changes\n 📝\u0000 associatedcompanyid: 66 changes\n 📝\u0000 email: 22 changes\n 📝\u0000 mobilephone: 37 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 130\n Properties:\n 📝\u0000 domain: 45 changes\n 📝\u0000 name: 42 changes\n 📝\u0000 hubspot_owner_id: 40 changes\n 📝\u0000 phone: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 154\n\n 🔔\u0000 Event: creation\n Count: 45\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 4\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 hs_deal_stage_probability: 4 changes\n 📝\u0000 amount: 1 changes\n\n\n INFO Looking for metrics: Config 270 (Heka Happy - 288), Date 2026-04-16.","depth":4,"value":"📝\u0000 leadtype: 2 changes\n 📝\u0000 manager_forecast_notes: 10 changes\n 📝\u0000 competitors____please_specify: 1 changes\n 📝\u0000 closed_won_reason_jiminny_ai: 1 changes\n 📝\u0000 client_handover_notes_jiminny_ai: 1 changes\n 📝\u0000 lead_source_deal: 2 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n\n 🔔\u0000 Event: association_change\n Count: 48\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 759\n Properties:\n 📝\u0000 domain: 148 changes\n 📝\u0000 name: 140 changes\n 📝\u0000 country: 135 changes\n 📝\u0000 phone: 115 changes\n 📝\u0000 industry: 124 changes\n 📝\u0000 hubspot_owner_id: 97 changes\n\n 🔔\u0000 Event: creation\n Count: 147\n\n 🔔\u0000 Event: association_change\n Count: 1369\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 4203\n Properties:\n 📝\u0000 lastname: 666 changes\n 📝\u0000 email: 600 changes\n 📝\u0000 hubspot_owner_id: 562 changes\n 📝\u0000 firstname: 608 changes\n 📝\u0000 jobtitle: 555 changes\n 📝\u0000 country: 585 changes\n 📝\u0000 associatedcompanyid: 585 changes\n 📝\u0000 phone: 31 changes\n 📝\u0000 mobilephone: 11 changes\n\n 🔔\u0000 Event: creation\n Count: 600\n\n 🔔\u0000 Event: association_change\n Count: 1349\n\n\n INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 797 (Kodex - 848)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 504\n Properties:\n 📝\u0000 phone: 42 changes\n 📝\u0000 firstname: 48 changes\n 📝\u0000 email: 44 changes\n 📝\u0000 lastname: 50 changes\n 📝\u0000 associatedcompanyid: 138 changes\n 📝\u0000 jobtitle: 38 changes\n 📝\u0000 hubspot_owner_id: 103 changes\n 📝\u0000 mobilephone: 37 changes\n 📝\u0000 country: 4 changes\n\n 🔔\u0000 Event: creation\n Count: 44\n\n 🔔\u0000 Event: association_change\n Count: 623\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 623\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 74\n Properties:\n 📝\u0000 country: 8 changes\n 📝\u0000 name: 9 changes\n 📝\u0000 domain: 12 changes\n 📝\u0000 hubspot_owner_id: 30 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 phone: 7 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 4\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 1 changes\n\n\n INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 636 (ProofPilot - 657)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 44\n\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 142\n Properties:\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 hubspot_owner_id: 24 changes\n 📝\u0000 jobtitle: 28 changes\n 📝\u0000 country: 14 changes\n 📝\u0000 lastname: 16 changes\n 📝\u0000 email: 14 changes\n 📝\u0000 phone: 8 changes\n 📝\u0000 firstname: 16 changes\n 📝\u0000 mobilephone: 1 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 dealtype: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 44\n\n\n INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1063 (Base.com - 1125)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 3464\n\n 🔔\u0000 Event: property_change\n Count: 1320\n Properties:\n 📝\u0000 name: 550 changes\n 📝\u0000 domain: 487 changes\n 📝\u0000 hubspot_owner_id: 157 changes\n 📝\u0000 phone: 35 changes\n 📝\u0000 country: 30 changes\n 📝\u0000 industry: 61 changes\n\n 🔔\u0000 Event: creation\n Count: 604\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 8211\n Properties:\n 📝\u0000 phone: 489 changes\n 📝\u0000 firstname: 1415 changes\n 📝\u0000 lastname: 1329 changes\n 📝\u0000 email: 1552 changes\n 📝\u0000 country: 400 changes\n 📝\u0000 associatedcompanyid: 1554 changes\n 📝\u0000 hubspot_owner_id: 428 changes\n 📝\u0000 jobtitle: 1026 changes\n 📝\u0000 mobilephone: 18 changes\n\n 🔔\u0000 Event: creation\n Count: 1559\n\n 🔔\u0000 Event: association_change\n Count: 3382\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 469\n Properties:\n 📝\u0000 dealstage: 74 changes\n 📝\u0000 hs_deal_stage_probability: 112 changes\n 📝\u0000 closedate: 39 changes\n 📝\u0000 implementation_type: 9 changes\n 📝\u0000 deal_currency_code: 23 changes\n 📝\u0000 minimum_fee: 33 changes\n 📝\u0000 estimated_fulfilment_orders_per_month: 37 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 dealtype: 2 changes\n 📝\u0000 amount: 26 changes\n 📝\u0000 monthly_orders_processed_by_base_with_normal_fee: 20 changes\n 📝\u0000 average_order_value: 18 changes\n 📝\u0000 estimated_orders_per_month: 9 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 dor_principal_ia: 4 changes\n 📝\u0000 objecao_central_ia: 4 changes\n 📝\u0000 proximo_passo_ia: 4 changes\n 📝\u0000 resumo_da_reuniao_ia: 4 changes\n 📝\u0000 categoria_do_portfolio_ia: 3 changes\n 📝\u0000 perfil_comportamental_do_prospect_ia: 4 changes\n 📝\u0000 score_do_vendedor_ia: 4 changes\n 📝\u0000 temperatura_do_deal_ia: 4 changes\n 📝\u0000 nota_da_demo_ia: 4 changes\n 📝\u0000 analise_de_tecnicas_de_vendas_ia: 4 changes\n 📝\u0000 perfil_do_cliente_icp_ia: 4 changes\n 📝\u0000 erp: 8 changes\n 📝\u0000 hub_ia: 2 changes\n 📝\u0000 gap_de_funcionalidade_ia: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 160\n\n 🔔\u0000 Event: creation\n Count: 41\n\n\n INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 766 (Marsello - 781)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 22\n\n 🔔\u0000 Event: property_change\n Count: 87\n Properties:\n 📝\u0000 phone: 5 changes\n 📝\u0000 country: 11 changes\n 📝\u0000 domain: 13 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 name: 27 changes\n 📝\u0000 hubspot_owner_id: 23 changes\n\n 🔔\u0000 Event: association_change\n Count: 203\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 337\n Properties:\n 📝\u0000 jobtitle: 19 changes\n 📝\u0000 hubspot_owner_id: 35 changes\n 📝\u0000 email: 83 changes\n 📝\u0000 associatedcompanyid: 89 changes\n 📝\u0000 mobilephone: 16 changes\n 📝\u0000 phone: 14 changes\n 📝\u0000 country: 17 changes\n 📝\u0000 firstname: 33 changes\n 📝\u0000 lastname: 31 changes\n\n 🔔\u0000 Event: creation\n Count: 24\n\n 🔔\u0000 Event: association_change\n Count: 202\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 16\n Properties:\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 sites: 1 changes\n 📝\u0000 customers: 1 changes\n 📝\u0000 deal_icp: 1 changes\n 📝\u0000 integrations: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n\n INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 803 (E3 - 854)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 134\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 phone: 1 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 domain: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 367\n Properties:\n 📝\u0000 hubspot_owner_id: 64 changes\n 📝\u0000 jobtitle: 36 changes\n 📝\u0000 lastname: 52 changes\n 📝\u0000 firstname: 58 changes\n 📝\u0000 associatedcompanyid: 51 changes\n 📝\u0000 email: 60 changes\n 📝\u0000 phone: 42 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 62\n\n 🔔\u0000 Event: association_change\n Count: 124\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 104\n Properties:\n 📝\u0000 dealstage: 23 changes\n 📝\u0000 hs_deal_stage_probability: 33 changes\n 📝\u0000 hs_manual_forecast_category: 26 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 closedate: 11 changes\n 📝\u0000 dealname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 42\n\n 🔔\u0000 Event: creation\n Count: 13\n\n\n INFO Looking for metrics: Config 944 (OneCrew - 1018), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 944 (OneCrew - 1018)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 46\n\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: property_change\n Count: 134\n Properties:\n 📝\u0000 phone: 3 changes\n 📝\u0000 name: 10 changes\n 📝\u0000 country: 9 changes\n 📝\u0000 domain: 9 changes\n 📝\u0000 hubspot_owner_id: 101 changes\n 📝\u0000 industry: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 🔔\u0000 Event: property_change\n Count: 3950\n Properties:\n 📝\u0000 pain_points_and_deal_planning: 549 changes\n 📝\u0000 next_steps: 541 changes\n 📝\u0000 objections_and_blockers: 520 changes\n 📝\u0000 crm: 68 changes\n 📝\u0000 proposal_tool: 89 changes\n 📝\u0000 map_tool: 15 changes\n 📝\u0000 total_in_office: 221 changes\n 📝\u0000 business_impact_jiminny: 495 changes\n 📝\u0000 contact_information_jiminny: 501 changes\n 📝\u0000 state_region: 293 changes\n 📝\u0000 total_field_leads: 138 changes\n 📝\u0000 users__crew: 129 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 hs_deal_stage_probability: 10 changes\n 📝\u0000 hs_manual_forecast_category: 5 changes\n 📝\u0000 accounting_software: 97 changes\n 📝\u0000 scheduling_tool: 14 changes\n 📝\u0000 city: 252 changes\n 📝\u0000 estimating_tool: 1 changes\n 📝\u0000 amount: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 87\n\n 🔔\u0000 Event: property_change\n Count: 727\n Properties:\n 📝\u0000 lastname: 82 changes\n 📝\u0000 phone: 24 changes\n 📝\u0000 email: 84 changes\n 📝\u0000 firstname: 87 changes\n 📝\u0000 jobtitle: 81 changes\n 📝\u0000 hubspot_owner_id: 248 changes\n 📝\u0000 mobilephone: 82 changes\n 📝\u0000 country: 19 changes\n 📝\u0000 associatedcompanyid: 20 changes\n\n 🔔\u0000 Event: association_change\n Count: 43\n\n\n INFO Looking for metrics: Config 896 (Mintago - 946), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 896 (Mintago - 946)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 1668\n\n 🔔\u0000 Event: creation\n Count: 217\n\n 🔔\u0000 Event: property_change\n Count: 890\n Properties:\n 📝\u0000 hubspot_owner_id: 50 changes\n 📝\u0000 industry: 150 changes\n 📝\u0000 phone: 120 changes\n 📝\u0000 domain: 212 changes\n 📝\u0000 name: 186 changes\n 📝\u0000 country: 172 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 984\n\n 🔔\u0000 Event: association_change\n Count: 2039\n\n 🔔\u0000 Event: property_change\n Count: 6980\n Properties:\n 📝\u0000 phone: 824 changes\n 📝\u0000 hubspot_owner_id: 691 changes\n 📝\u0000 jobtitle: 990 changes\n 📝\u0000 email: 861 changes\n 📝\u0000 lastname: 1006 changes\n 📝\u0000 firstname: 986 changes\n 📝\u0000 associatedcompanyid: 820 changes\n 📝\u0000 country: 20 changes\n 📝\u0000 mobilephone: 782 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 419\n\n 🔔\u0000 Event: property_change\n Count: 153\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 hs_deal_stage_probability: 41 changes\n 📝\u0000 dealname: 8 changes\n 📝\u0000 hs_next_step: 3 changes\n 📝\u0000 dealstage: 29 changes\n 📝\u0000 closedate: 24 changes\n 📝\u0000 hs_manual_forecast_category: 23 changes\n 📝\u0000 deal_currency_code: 6 changes\n 📝\u0000 amount_in_home_currency: 13 changes\n\n\n INFO Looking for metrics: Config 908 (JPA Workspaces - 956), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 908 (JPA Workspaces - 956)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 dealstage: 4 changes\n 📝\u0000 hs_deal_stage_probability: 7 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 447\n Properties:\n 📝\u0000 hubspot_owner_id: 446 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 7\n\n 🔔\u0000 Event: property_change\n Count: 721\n Properties:\n 📝\u0000 lastname: 9 changes\n 📝\u0000 email: 12 changes\n 📝\u0000 firstname: 12 changes\n 📝\u0000 mobilephone: 4 changes\n 📝\u0000 hubspot_owner_id: 675 changes\n 📝\u0000 jobtitle: 2 changes\n 📝\u0000 phone: 4 changes\n 📝\u0000 associatedcompanyid: 2 changes\n 📝\u0000 country: 1 changes\n\n\n INFO Looking for metrics: Config 171 (GaggleAMP Inc. - 189), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 171 (GaggleAMP Inc. - 189)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 175\n Properties:\n 📝\u0000 hubspot_owner_id: 98 changes\n 📝\u0000 name: 14 changes\n 📝\u0000 country: 14 changes\n 📝\u0000 industry: 22 changes\n 📝\u0000 domain: 15 changes\n 📝\u0000 phone: 12 changes\n\n 🔔\u0000 Event: creation\n Count: 15\n\n 🔔\u0000 Event: association_change\n Count: 424\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 212\n\n 🔔\u0000 Event: property_change\n Count: 1862\n Properties:\n 📝\u0000 hubspot_owner_id: 356 changes\n 📝\u0000 country: 231 changes\n 📝\u0000 lastname: 213 changes\n 📝\u0000 jobtitle: 214 changes\n 📝\u0000 email: 212 changes\n 📝\u0000 firstname: 212 changes\n 📝\u0000 associatedcompanyid: 212 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 phone: 209 changes\n\n 🔔\u0000 Event: association_change\n Count: 425\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 dealstage: 2 changes\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 closedate: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 1\n\n\n INFO Looking for metrics: Config 880 (Immutable - 931), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 880 (Immutable - 931)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 4\n Properties:\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 21\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 1831\n\n 🔔\u0000 Event: creation\n Count: 736\n\n 🔔\u0000 Event: property_change\n Count: 3020\n Properties:\n 📝\u0000 lastname: 536 changes\n 📝\u0000 hubspot_owner_id: 169 changes\n 📝\u0000 jobtitle: 723 changes\n 📝\u0000 country: 155 changes\n 📝\u0000 firstname: 544 changes\n 📝\u0000 email: 448 changes\n 📝\u0000 associatedcompanyid: 441 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 mobilephone: 2 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 1818\n\n 🔔\u0000 Event: property_change\n Count: 308\n Properties:\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 name: 139 changes\n 📝\u0000 domain: 158 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 158\n\n\n INFO Looking for metrics: Config 877 (GroWrk Remote - 927), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 877 (GroWrk Remote - 927)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 25\n Properties:\n 📝\u0000 industry: 5 changes\n 📝\u0000 name: 5 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 domain: 4 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 44\n\n 🔔\u0000 Event: creation\n Count: 5\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 82\n Properties:\n 📝\u0000 hs_deal_stage_probability: 19 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 company_name: 8 changes\n 📝\u0000 amount: 12 changes\n 📝\u0000 dealstage: 8 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 deal_currency_code: 9 changes\n 📝\u0000 dealname: 4 changes\n 📝\u0000 agreement_model: 4 changes\n 📝\u0000 is_the_prospect_looking_at_competitors_: 2 changes\n 📝\u0000 is_the_prospect_using_a_competitor_: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 58\n\n 🔔\u0000 Event: creation\n Count: 11\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 58\n\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 country: 3 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 lastname: 8 changes\n 📝\u0000 associatedcompanyid: 10 changes\n 📝\u0000 firstname: 6 changes\n 📝\u0000 hubspot_owner_id: 9 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 10\n\n\n INFO Looking for metrics: Config 928 (Portless - 995), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 928 (Portless - 995)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 283\n Properties:\n 📝\u0000 firstname: 31 changes\n 📝\u0000 lastname: 31 changes\n 📝\u0000 email: 30 changes\n 📝\u0000 country: 25 changes\n 📝\u0000 jobtitle: 26 changes\n 📝\u0000 hubspot_owner_id: 48 changes\n 📝\u0000 associatedcompanyid: 50 changes\n 📝\u0000 mobilephone: 26 changes\n 📝\u0000 phone: 16 changes\n\n 🔔\u0000 Event: association_change\n Count: 182\n\n 🔔\u0000 Event: creation\n Count: 29\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 188\n\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 93\n Properties:\n 📝\u0000 hubspot_owner_id: 25 changes\n 📝\u0000 domain: 18 changes\n 📝\u0000 name: 17 changes\n 📝\u0000 industry: 13 changes\n 📝\u0000 phone: 8 changes\n 📝\u0000 country: 12 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 56\n Properties:\n 📝\u0000 dealstage: 13 changes\n 📝\u0000 hs_deal_stage_probability: 15 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 amount: 11 changes\n 📝\u0000 deal_currency_code: 4 changes\n 📝\u0000 hs_next_step: 1 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 dealname: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 🔔\u0000 Event: association_change\n Count: 18\n\n\n INFO Looking for metrics: Config 150 (Nudge Global Limited - 168), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 150 (Nudge Global Limited - 168)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: creation\n Count: 8\n\n 🔔\u0000 Event: property_change\n Count: 430\n Properties:\n 📝\u0000 jobtitle: 11 changes\n 📝\u0000 firstname: 9 changes\n 📝\u0000 mobilephone: 6 changes\n 📝\u0000 lastname: 9 changes\n 📝\u0000 hubspot_owner_id: 224 changes\n 📝\u0000 associatedcompanyid: 10 changes\n 📝\u0000 email: 12 changes\n 📝\u0000 country: 147 changes\n 📝\u0000 phone: 2 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 30\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 7\n Properties:\n 📝\u0000 domain: 3 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 4\n\n 🔔\u0000 Event: association_change\n Count: 13\n\n 🔔\u0000 Event: property_change\n Count: 25\n Properties:\n 📝\u0000 hs_deal_stage_probability: 10 changes\n 📝\u0000 dealstage: 6 changes\n 📝\u0000 hs_manual_forecast_category: 6 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 closedate: 2 changes\n\n\n INFO Looking for metrics: Config 583 (One Core Media - 608), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 583 (One Core Media - 608)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 domain: 4 changes\n 📝\u0000 name: 4 changes\n 📝\u0000 hubspot_owner_id: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 42\n Properties:\n 📝\u0000 phone: 4 changes\n 📝\u0000 firstname: 5 changes\n 📝\u0000 lastname: 5 changes\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 associatedcompanyid: 8 changes\n 📝\u0000 jobtitle: 2 changes\n 📝\u0000 mobilephone: 2 changes\n\n\n INFO Looking for metrics: Config 913 (Kyloe Partners - 456), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 913 (Kyloe Partners - 456)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 160\n\n 🔔\u0000 Event: property_change\n Count: 1\n Properties:\n 📝\u0000 phone: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 54\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 phone: 4 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 email: 4 changes\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 firstname: 5 changes\n 📝\u0000 lastname: 4 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 98\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 69\n Properties:\n 📝\u0000 dealstage: 25 changes\n 📝\u0000 hs_deal_stage_probability: 15 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hs_closed_amount_in_home_currency: 3 changes\n 📝\u0000 closedate: 8 changes\n 📝\u0000 hs_closed_deal_close_date: 8 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 app: 1 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 dealname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 74\n\n 🔔\u0000 Event: creation\n Count: 4\n\n\n INFO Looking for metrics: Config 530 (InnoFund - 556), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 530 (InnoFund - 556)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 147\n\n 🔔\u0000 Event: creation\n Count: 66\n\n 🔔\u0000 Event: property_change\n Count: 422\n Properties:\n 📝\u0000 phone: 53 changes\n 📝\u0000 hubspot_owner_id: 66 changes\n 📝\u0000 lastname: 56 changes\n 📝\u0000 jobtitle: 56 changes\n 📝\u0000 firstname: 66 changes\n 📝\u0000 associatedcompanyid: 66 changes\n 📝\u0000 email: 22 changes\n 📝\u0000 mobilephone: 37 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 130\n Properties:\n 📝\u0000 domain: 45 changes\n 📝\u0000 name: 42 changes\n 📝\u0000 hubspot_owner_id: 40 changes\n 📝\u0000 phone: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 154\n\n 🔔\u0000 Event: creation\n Count: 45\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 4\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 hs_deal_stage_probability: 4 changes\n 📝\u0000 amount: 1 changes\n\n\n INFO Looking for metrics: Config 270 (Heka Happy - 288), Date 2026-04-16.","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
-148901649368242030
|
7687357789314101077
|
visual_change
|
accessibility
|
NULL
|
📝 leadtype: 2 changes
📝 manager_fore 📝 leadtype: 2 changes
📝 manager_forecast_notes: 10 changes
📝 competitors____please_specify: 1 changes
📝 closed_won_reason_jiminny_ai: 1 changes
📝 client_handover_notes_jiminny_ai: 1 changes
📝 lead_source_deal: 2 changes
📝 hubspot_owner_id: 4 changes
🔔 Event: association_change
Count: 48
📦 Object Type: company
🔔 Event: property_change
Count: 759
Properties:
📝 domain: 148 changes
📝 name: 140 changes
📝 country: 135 changes
📝 phone: 115 changes
📝 industry: 124 changes
📝 hubspot_owner_id: 97 changes
🔔 Event: creation
Count: 147
🔔 Event: association_change
Count: 1369
📦 Object Type: contact
🔔 Event: property_change
Count: 4203
Properties:
📝 lastname: 666 changes
📝 email: 600 changes
📝 hubspot_owner_id: 562 changes
📝 firstname: 608 changes
📝 jobtitle: 555 changes
📝 country: 585 changes
📝 associatedcompanyid: 585 changes
📝 phone: 31 changes
📝 mobilephone: 11 changes
🔔 Event: creation
Count: 600
🔔 Event: association_change
Count: 1349
INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16.
📊 Webhook Metrics for Config 797 (Kodex - 848)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 504
Properties:
📝 phone: 42 changes
📝 firstname: 48 changes
📝 email: 44 changes
📝 lastname: 50 changes
📝 associatedcompanyid: 138 changes
📝 jobtitle: 38 changes
📝 hubspot_owner_id: 103 changes
📝 mobilephone: 37 changes
📝 country: 4 changes
🔔 Event: creation
Count: 44
🔔 Event: association_change
Count: 623
📦 Object Type: company
🔔 Event: association_change
Count: 623
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 74
Properties:
📝 country: 8 changes
📝 name: 9 changes
📝 domain: 12 changes
📝 hubspot_owner_id: 30 changes
📝 industry: 8 changes
📝 phone: 7 changes
📦 Object Type: deal
🔔 Event: association_change
Count: 2
🔔 Event: property_change
Count: 4
Properties:
📝 amount: 1 changes
📝 hubspot_owner_id: 1 changes
📝 closedate: 1 changes
📝 dealname: 1 changes
INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16.
📊 Webhook Metrics for Config 636 (ProofPilot - 657)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 44
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 142
Properties:
📝 associatedcompanyid: 21 changes
📝 hubspot_owner_id: 24 changes
📝 jobtitle: 28 changes
📝 country: 14 changes
📝 lastname: 16 changes
📝 email: 14 changes
📝 phone: 8 changes
📝 firstname: 16 changes
📝 mobilephone: 1 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 8
Properties:
📝 dealtype: 1 changes
📝 amount: 2 changes
📝 closedate: 1 changes
📝 dealname: 2 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 44
INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16.
📊 Webhook Metrics for Config 1063 (Base.com - 1125)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 3464
🔔 Event: property_change
Count: 1320
Properties:
📝 name: 550 changes
📝 domain: 487 changes
📝 hubspot_owner_id: 157 changes
📝 phone: 35 changes
📝 country: 30 changes
📝 industry: 61 changes
🔔 Event: creation
Count: 604
📦 Object Type: contact
🔔 Event: property_change
Count: 8211
Properties:
📝 phone: 489 changes
📝 firstname: 1415 changes
📝 lastname: 1329 changes
📝 email: 1552 changes
📝 country: 400 changes
📝 associatedcompanyid: 1554 changes
📝 hubspot_owner_id: 428 changes
📝 jobtitle: 1026 changes
📝 mobilephone: 18 changes
🔔 Event: creation
Count: 1559
🔔 Event: association_change
Count: 3382
📦 Object Type: deal
🔔 Event: property_change
Count: 469
Properties:
📝 dealstage: 74 changes
📝 hs_deal_stage_probability: 112 changes
📝 closedate: 39 changes
📝 implementation_type: 9 changes
📝 deal_currency_code: 23 changes
📝 minimum_fee: 33 changes
📝 estimated_fulfilment_orders_per_month: 37 changes
📝 hubspot_owner_id: 8 changes
📝 dealtype: 2 changes
📝 amount: 26 changes
📝 monthly_orders_processed_by_base_with_normal_fee: 20 changes
📝 average_order_value: 18 changes
📝 estimated_orders_per_month: 9 changes
📝 dealname: 3 changes
📝 pipeline: 1 changes
📝 dor_principal_ia: 4 changes
📝 objecao_central_ia: 4 changes
📝 proximo_passo_ia: 4 changes
📝 resumo_da_reuniao_ia: 4 changes
📝 categoria_do_portfolio_ia: 3 changes
📝 perfil_comportamental_do_prospect_ia: 4 changes
📝 score_do_vendedor_ia: 4 changes
📝 temperatura_do_deal_ia: 4 changes
📝 nota_da_demo_ia: 4 changes
📝 analise_de_tecnicas_de_vendas_ia: 4 changes
📝 perfil_do_cliente_icp_ia: 4 changes
📝 erp: 8 changes
📝 hub_ia: 2 changes
📝 gap_de_funcionalidade_ia: 2 changes
🔔 Event: association_change
Count: 160
🔔 Event: creation
Count: 41
INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16.
📊 Webhook Metrics for Config 766 (Marsello - 781)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 22
🔔 Event: property_change
Count: 87
Properties:
📝 phone: 5 changes
📝 country: 11 changes
📝 domain: 13 changes
📝 industry: 8 changes
📝 name: 27 changes
📝 hubspot_owner_id: 23 changes
🔔 Event: association_change
Count: 203
📦 Object Type: contact
🔔 Event: property_change
Count: 337
Properties:
📝 jobtitle: 19 changes
📝 hubspot_owner_id: 35 changes
📝 email: 83 changes
📝 associatedcompanyid: 89 changes
📝 mobilephone: 16 changes
📝 phone: 14 changes
📝 country: 17 changes
📝 firstname: 33 changes
📝 lastname: 31 changes
🔔 Event: creation
Count: 24
🔔 Event: association_change
Count: 202
📦 Object Type: deal
🔔 Event: property_change
Count: 16
Properties:
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
📝 dealname: 2 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
📝 sites: 1 changes
📝 customers: 1 changes
📝 deal_icp: 1 changes
📝 integrations: 1 changes
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 3
INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16.
📊 Webhook Metrics for Config 803 (E3 - 854)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 134
🔔 Event: property_change
Count: 5
Properties:
📝 phone: 1 changes
📝 name: 2 changes
📝 domain: 1 changes
📝 hubspot_owner_id: 1 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 367
Properties:
📝 hubspot_owner_id: 64 changes
📝 jobtitle: 36 changes
📝 lastname: 52 changes
📝 firstname: 58 changes
📝 associatedcompanyid: 51 changes
📝 email: 60 changes
📝 phone: 42 changes
📝 mobilephone: 3 changes
📝 country: 1 changes
🔔 Event: creation
Count: 62
🔔 Event: association_change
Count: 124
📦 Object Type: deal
🔔 Event: property_change
Count: 104
Properties:
📝 dealstage: 23 changes
📝 hs_deal_stage_probability: 33 changes
📝 hs_manual_forecast_category: 26 changes
📝 amount: 10 changes
📝 closedate: 11 changes
📝 dealname: 1 changes
🔔 Event: association_change
Count: 42
🔔 Event: creation
Count: 13
INFO Looking for metrics: Config 944 (OneCrew - 1018), Date 2026-04-16.
📊 Webhook Metrics for Config 944 (OneCrew - 1018)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 46
🔔 Event: creation
Count: 10
🔔 Event: property_change
Count: 134
Properties:
📝 phone: 3 changes
📝 name: 10 changes
📝 country: 9 changes
📝 domain: 9 changes
📝 hubspot_owner_id: 101 changes
📝 industry: 2 changes
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: association_change
Count: 9
🔔 Event: property_change
Count: 3950
Properties:
📝 pain_points_and_deal_planning: 549 changes
📝 next_steps: 541 changes
📝 objections_and_blockers: 520 changes
📝 crm: 68 changes
📝 proposal_tool: 89 changes
📝 map_tool: 15 changes
📝 total_in_office: 221 changes
📝 business_impact_jiminny: 495 changes
📝 contact_information_jiminny: 501 changes
📝 state_region: 293 changes
📝 total_field_leads: 138 changes
📝 users__crew: 129 changes
📝 closedate: 3 changes
📝 dealstage: 7 changes
📝 hs_deal_stage_probability: 10 changes
📝 hs_manual_forecast_category: 5 changes
📝 accounting_software: 97 changes
📝 scheduling_tool: 14 changes
📝 city: 252 changes
📝 estimating_tool: 1 changes
📝 amount: 2 changes
📦 Object Type: contact
🔔 Event: creation
Count: 87
🔔 Event: property_change
Count: 727
Properties:
📝 lastname: 82 changes
📝 phone: 24 changes
📝 email: 84 changes
📝 firstname: 87 changes
📝 jobtitle: 81 changes
📝 hubspot_owner_id: 248 changes
📝 mobilephone: 82 changes
📝 country: 19 changes
📝 associatedcompanyid: 20 changes
🔔 Event: association_change
Count: 43
INFO Looking for metrics: Config 896 (Mintago - 946), Date 2026-04-16.
📊 Webhook Metrics for Config 896 (Mintago - 946)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 1668
🔔 Event: creation
Count: 217
🔔 Event: property_change
Count: 890
Properties:
📝 hubspot_owner_id: 50 changes
📝 industry: 150 changes
📝 phone: 120 changes
📝 domain: 212 changes
📝 name: 186 changes
📝 country: 172 changes
📦 Object Type: contact
🔔 Event: creation
Count: 984
🔔 Event: association_change
Count: 2039
🔔 Event: property_change
Count: 6980
Properties:
📝 phone: 824 changes
📝 hubspot_owner_id: 691 changes
📝 jobtitle: 990 changes
📝 email: 861 changes
📝 lastname: 1006 changes
📝 firstname: 986 changes
📝 associatedcompanyid: 820 changes
📝 country: 20 changes
📝 mobilephone: 782 changes
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 419
🔔 Event: property_change
Count: 153
Properties:
📝 hubspot_owner_id: 6 changes
📝 hs_deal_stage_probability: 41 changes
📝 dealname: 8 changes
📝 hs_next_step: 3 changes
📝 dealstage: 29 changes
📝 closedate: 24 changes
📝 hs_manual_forecast_category: 23 changes
📝 deal_currency_code: 6 changes
📝 amount_in_home_currency: 13 changes
INFO Looking for metrics: Config 908 (JPA Workspaces - 956), Date 2026-04-16.
📊 Webhook Metrics for Config 908 (JPA Workspaces - 956)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: property_change
Count: 14
Properties:
📝 dealstage: 4 changes
📝 hs_deal_stage_probability: 7 changes
📝 hs_manual_forecast_category: 3 changes
🔔 Event: association_change
Count: 9
📦 Object Type: company
🔔 Event: property_change
Count: 447
Properties:
📝 hubspot_owner_id: 446 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 10
📦 Object Type: contact
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 7
🔔 Event: property_change
Count: 721
Properties:
📝 lastname: 9 changes
📝 email: 12 changes
📝 firstname: 12 changes
📝 mobilephone: 4 changes
📝 hubspot_owner_id: 675 changes
📝 jobtitle: 2 changes
📝 phone: 4 changes
📝 associatedcompanyid: 2 changes
📝 country: 1 changes
INFO Looking for metrics: Config 171 (GaggleAMP Inc. - 189), Date 2026-04-16.
📊 Webhook Metrics for Config 171 (GaggleAMP Inc. - 189)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 175
Properties:
📝 hubspot_owner_id: 98 changes
📝 name: 14 changes
📝 country: 14 changes
📝 industry: 22 changes
📝 domain: 15 changes
📝 phone: 12 changes
🔔 Event: creation
Count: 15
🔔 Event: association_change
Count: 424
📦 Object Type: contact
🔔 Event: creation
Count: 212
🔔 Event: property_change
Count: 1862
Properties:
📝 hubspot_owner_id: 356 changes
📝 country: 231 changes
📝 lastname: 213 changes
📝 jobtitle: 214 changes
📝 email: 212 changes
📝 firstname: 212 changes
📝 associatedcompanyid: 212 changes
📝 mobilephone: 3 changes
📝 phone: 209 changes
🔔 Event: association_change
Count: 425
📦 Object Type: deal
🔔 Event: property_change
Count: 8
Properties:
📝 dealstage: 2 changes
📝 hs_deal_stage_probability: 2 changes
📝 closedate: 2 changes
📝 hs_manual_forecast_category: 2 changes
🔔 Event: association_change
Count: 1
INFO Looking for metrics: Config 880 (Immutable - 931), Date 2026-04-16.
📊 Webhook Metrics for Config 880 (Immutable - 931)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 4
Properties:
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
🔔 Event: association_change
Count: 21
📦 Object Type: contact
🔔 Event: association_change
Count: 1831
🔔 Event: creation
Count: 736
🔔 Event: property_change
Count: 3020
Properties:
📝 lastname: 536 changes
📝 hubspot_owner_id: 169 changes
📝 jobtitle: 723 changes
📝 country: 155 changes
📝 firstname: 544 changes
📝 email: 448 changes
📝 associatedcompanyid: 441 changes
📝 phone: 2 changes
📝 mobilephone: 2 changes
📦 Object Type: company
🔔 Event: association_change
Count: 1818
🔔 Event: property_change
Count: 308
Properties:
📝 hubspot_owner_id: 8 changes
📝 name: 139 changes
📝 domain: 158 changes
📝 country: 1 changes
📝 industry: 1 changes
📝 phone: 1 changes
🔔 Event: creation
Count: 158
INFO Looking for metrics: Config 877 (GroWrk Remote - 927), Date 2026-04-16.
📊 Webhook Metrics for Config 877 (GroWrk Remote - 927)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 25
Properties:
📝 industry: 5 changes
📝 name: 5 changes
📝 country: 4 changes
📝 domain: 4 changes
📝 hubspot_owner_id: 6 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 44
🔔 Event: creation
Count: 5
📦 Object Type: deal
🔔 Event: property_change
Count: 82
Properties:
📝 hs_deal_stage_probability: 19 changes
📝 hubspot_owner_id: 5 changes
📝 company_name: 8 changes
📝 amount: 12 changes
📝 dealstage: 8 changes
📝 closedate: 9 changes
📝 deal_currency_code: 9 changes
📝 dealname: 4 changes
📝 agreement_model: 4 changes
📝 is_the_prospect_looking_at_competitors_: 2 changes
📝 is_the_prospect_using_a_competitor_: 2 changes
🔔 Event: association_change
Count: 58
🔔 Event: creation
Count: 11
📦 Object Type: contact
🔔 Event: association_change
Count: 58
🔔 Event: property_change
Count: 49
Properties:
📝 country: 3 changes
📝 email: 9 changes
📝 lastname: 8 changes
📝 associatedcompanyid: 10 changes
📝 firstname: 6 changes
📝 hubspot_owner_id: 9 changes
📝 jobtitle: 3 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 10
INFO Looking for metrics: Config 928 (Portless - 995), Date 2026-04-16.
📊 Webhook Metrics for Config 928 (Portless - 995)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 283
Properties:
📝 firstname: 31 changes
📝 lastname: 31 changes
📝 email: 30 changes
📝 country: 25 changes
📝 jobtitle: 26 changes
📝 hubspot_owner_id: 48 changes
📝 associatedcompanyid: 50 changes
📝 mobilephone: 26 changes
📝 phone: 16 changes
🔔 Event: association_change
Count: 182
🔔 Event: creation
Count: 29
📦 Object Type: company
🔔 Event: association_change
Count: 188
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 93
Properties:
📝 hubspot_owner_id: 25 changes
📝 domain: 18 changes
📝 name: 17 changes
📝 industry: 13 changes
📝 phone: 8 changes
📝 country: 12 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 56
Properties:
📝 dealstage: 13 changes
📝 hs_deal_stage_probability: 15 changes
📝 closedate: 9 changes
📝 amount: 11 changes
📝 deal_currency_code: 4 changes
📝 hs_next_step: 1 changes
📝 pipeline: 1 changes
📝 dealname: 1 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: creation
Count: 4
🔔 Event: association_change
Count: 18
INFO Looking for metrics: Config 150 (Nudge Global Limited - 168), Date 2026-04-16.
📊 Webhook Metrics for Config 150 (Nudge Global Limited - 168)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 27
🔔 Event: creation
Count: 8
🔔 Event: property_change
Count: 430
Properties:
📝 jobtitle: 11 changes
📝 firstname: 9 changes
📝 mobilephone: 6 changes
📝 lastname: 9 changes
📝 hubspot_owner_id: 224 changes
📝 associatedcompanyid: 10 changes
📝 email: 12 changes
📝 country: 147 changes
📝 phone: 2 changes
📦 Object Type: company
🔔 Event: association_change
Count: 30
🔔 Event: creation
Count: 3
🔔 Event: property_change
Count: 7
Properties:
📝 domain: 3 changes
📝 name: 2 changes
📝 hubspot_owner_id: 2 changes
📦 Object Type: deal
🔔 Event: creation
Count: 4
🔔 Event: association_change
Count: 13
🔔 Event: property_change
Count: 25
Properties:
📝 hs_deal_stage_probability: 10 changes
📝 dealstage: 6 changes
📝 hs_manual_forecast_category: 6 changes
📝 amount: 1 changes
📝 closedate: 2 changes
INFO Looking for metrics: Config 583 (One Core Media - 608), Date 2026-04-16.
📊 Webhook Metrics for Config 583 (One Core Media - 608)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 11
Properties:
📝 domain: 4 changes
📝 name: 4 changes
📝 hubspot_owner_id: 3 changes
🔔 Event: association_change
Count: 16
📦 Object Type: contact
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 16
🔔 Event: property_change
Count: 42
Properties:
📝 phone: 4 changes
📝 firstname: 5 changes
📝 lastname: 5 changes
📝 hubspot_owner_id: 7 changes
📝 email: 9 changes
📝 associatedcompanyid: 8 changes
📝 jobtitle: 2 changes
📝 mobilephone: 2 changes
INFO Looking for metrics: Config 913 (Kyloe Partners - 456), Date 2026-04-16.
📊 Webhook Metrics for Config 913 (Kyloe Partners - 456)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 160
🔔 Event: property_change
Count: 1
Properties:
📝 phone: 1 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 54
Properties:
📝 hubspot_owner_id: 6 changes
📝 phone: 4 changes
📝 jobtitle: 7 changes
📝 country: 2 changes
📝 email: 4 changes
📝 associatedcompanyid: 21 changes
📝 firstname: 5 changes
📝 lastname: 4 changes
📝 mobilephone: 1 changes
🔔 Event: association_change
Count: 98
🔔 Event: creation
Count: 3
📦 Object Type: deal
🔔 Event: property_change
Count: 69
Properties:
📝 dealstage: 25 changes
📝 hs_deal_stage_probability: 15 changes
📝 hs_manual_forecast_category: 2 changes
📝 amount: 1 changes
📝 hs_closed_amount_in_home_currency: 3 changes
📝 closedate: 8 changes
📝 hs_closed_deal_close_date: 8 changes
📝 dealtype: 3 changes
📝 hubspot_owner_id: 1 changes
📝 app: 1 changes
📝 deal_currency_code: 1 changes
📝 dealname: 1 changes
🔔 Event: association_change
Count: 74
🔔 Event: creation
Count: 4
INFO Looking for metrics: Config 530 (InnoFund - 556), Date 2026-04-16.
📊 Webhook Metrics for Config 530 (InnoFund - 556)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 147
🔔 Event: creation
Count: 66
🔔 Event: property_change
Count: 422
Properties:
📝 phone: 53 changes
📝 hubspot_owner_id: 66 changes
📝 lastname: 56 changes
📝 jobtitle: 56 changes
📝 firstname: 66 changes
📝 associatedcompanyid: 66 changes
📝 email: 22 changes
📝 mobilephone: 37 changes
📦 Object Type: company
🔔 Event: property_change
Count: 130
Properties:
📝 domain: 45 changes
📝 name: 42 changes
📝 hubspot_owner_id: 40 changes
📝 phone: 3 changes
🔔 Event: association_change
Count: 154
🔔 Event: creation
Count: 45
📦 Object Type: deal
🔔 Event: creation
Count: 4
🔔 Event: association_change
Count: 9
🔔 Event: property_change
Count: 5
Properties:
📝 hs_deal_stage_probability: 4 changes
📝 amount: 1 changes
INFO Looking for metrics: Config 270 (Heka Happy - 288), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69502
|
1598
|
2
|
2026-04-22T08:13:15.391414+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845595391_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
📝 jobtitle: 2 changes
🔔 Event: creation
📝 jobtitle: 2 changes
🔔 Event: creation
Count: 82
📦 Object Type: deal
🔔 Event: creation
Count: 28
🔔 Event: property_change
Count: 153
Properties:
📝 dealstage: 48 changes
📝 hs_deal_stage_probability: 59 changes
📝 deal_currency_code: 3 changes
📝 amount: 3 changes
📝 closedate: 11 changes
📝 dealtype: 28 changes
📝 dealname: 1 changes
🔔 Event: association_change
Count: 85
📦 Object Type: company
🔔 Event: association_change
Count: 86
🔔 Event: property_change
Count: 11
Properties:
📝 domain: 6 changes
📝 name: 4 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: creation
Count: 4
INFO Looking for metrics: Config 801 (Rise Vision - 852), Date 2026-04-16.
📊 Webhook Metrics for Config 801 (Rise Vision - 852)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: association_change
Count: 57
🔔 Event: property_change
Count: 117
Properties:
📝 closedate: 20 changes
📝 dealstage: 10 changes
📝 hs_deal_stage_probability: 25 changes
📝 hs_manual_forecast_category: 25 changes
📝 amount: 29 changes
📝 dealname: 5 changes
📝 pipeline: 2 changes
📝 hs_next_step: 1 changes
🔔 Event: creation
Count: 16
📦 Object Type: company
🔔 Event: association_change
Count: 149
🔔 Event: creation
Count: 26
🔔 Event: property_change
Count: 73
Properties:
📝 industry: 26 changes
📝 country: 19 changes
📝 name: 26 changes
📝 phone: 1 changes
📝 domain: 1 changes
📦 Object Type: contact
🔔 Event: creation
Count: 95
🔔 Event: association_change
Count: 150
🔔 Event: property_change
Count: 418
Properties:
📝 email: 93 changes
📝 firstname: 90 changes
📝 lastname: 87 changes
📝 associatedcompanyid: 46 changes
📝 phone: 31 changes
📝 jobtitle: 21 changes
📝 hubspot_owner_id: 37 changes
📝 mobilephone: 3 changes
📝 country: 10 changes
INFO Looking for metrics: Config 834 (AnyVan.com - 882), Date 2026-04-16.
📊 Webhook Metrics for Config 834 (AnyVan.com - 882)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 5687
Properties:
📝 name: 4629 changes
📝 domain: 154 changes
📝 hubspot_owner_id: 904 changes
🔔 Event: association_change
Count: 25219
🔔 Event: creation
Count: 4689
📦 Object Type: contact
🔔 Event: property_change
Count: 54620
Properties:
📝 hubspot_owner_id: 2837 changes
📝 email: 4471 changes
📝 phone: 3661 changes
📝 lastname: 16150 changes
📝 firstname: 22622 changes
📝 associatedcompanyid: 4860 changes
📝 mobilephone: 13 changes
📝 jobtitle: 5 changes
📝 country: 1 changes
🔔 Event: creation
Count: 4471
🔔 Event: association_change
Count: 17648
📦 Object Type: deal
🔔 Event: creation
Count: 7588
🔔 Event: property_change
Count: 82720
Properties:
📝 dealname: 4204 changes
📝 amount: 22594 changes
📝 hs_deal_stage_probability: 17646 changes
📝 pipeline: 4356 changes
📝 dealstage: 14626 changes
📝 closedate: 11096 changes
📝 hubspot_owner_id: 6094 changes
📝 selected_date: 1969 changes
📝 deal_currency_code: 135 changes
🔔 Event: association_change
Count: 22773
INFO Looking for metrics: Config 878 (Dingus and Zazzy - 929), Date 2026-04-16.
📊 Webhook Metrics for Config 878 (Dingus and Zazzy - 929)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: property_change
Count: 158
Properties:
📝 amount_in_home_currency: 24 changes
📝 hs_deal_stage_probability: 35 changes
📝 hs_manual_forecast_category: 27 changes
📝 closedate: 23 changes
📝 lost_reason: 9 changes
📝 dealstage: 27 changes
📝 dealname: 9 changes
📝 hubspot_owner_id: 2 changes
📝 source_attribution: 2 changes
🔔 Event: creation
Count: 18
🔔 Event: association_change
Count: 52
📦 Object Type: company
🔔 Event: property_change
Count: 59
Properties:
📝 domain: 14 changes
📝 name: 14 changes
📝 hubspot_owner_id: 17 changes
📝 industry: 5 changes
📝 phone: 4 changes
📝 country: 5 changes
🔔 Event: association_change
Count: 69
🔔 Event: creation
Count: 14
📦 Object Type: contact
🔔 Event: property_change
Count: 192
Properties:
📝 phone: 8 changes
📝 lastname: 22 changes
📝 firstname: 22 changes
📝 jobtitle: 20 changes
📝 hubspot_owner_id: 76 changes
📝 email: 17 changes
📝 associatedcompanyid: 16 changes
📝 mobilephone: 11 changes
🔔 Event: association_change
Count: 53
🔔 Event: creation
Count: 20
INFO Looking for metrics: Config 671 (CosmosID - 691), Date 2026-04-16.
📊 Webhook Metrics for Config 671 (CosmosID - 691)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 15
Properties:
📝 hubspot_owner_id: 6 changes
📝 name: 5 changes
📝 domain: 3 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 44
📦 Object Type: deal
🔔 Event: property_change
Count: 78
Properties:
📝 hs_deal_stage_probability: 14 changes
📝 createdate: 10 changes
📝 hs_manual_forecast_category: 13 changes
📝 deal_currency_code: 4 changes
📝 amount: 20 changes
📝 closedate: 8 changes
📝 dealstage: 4 changes
📝 dealname: 3 changes
📝 dealtype: 1 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: association_change
Count: 30
🔔 Event: creation
Count: 10
📦 Object Type: contact
🔔 Event: creation
Count: 13
🔔 Event: property_change
Count: 145
Properties:
📝 jobtitle: 77 changes
📝 hubspot_owner_id: 12 changes
📝 firstname: 9 changes
📝 phone: 5 changes
📝 lastname: 8 changes
📝 email: 13 changes
📝 associatedcompanyid: 12 changes
📝 country: 9 changes
🔔 Event: association_change
Count: 34
INFO Looking for metrics: Config 652 (Abode - 673), Date 2026-04-16.
📊 Webhook Metrics for Config 652 (Abode - 673)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 1
Properties:
📝 country: 1 changes
🔔 Event: association_change
Count: 10
📦 Object Type: contact
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 40
Properties:
📝 phone: 3 changes
📝 hubspot_owner_id: 8 changes
📝 email: 6 changes
📝 associatedcompanyid: 4 changes
📝 country: 4 changes
📝 lastname: 5 changes
📝 jobtitle: 4 changes
📝 firstname: 5 changes
📝 mobilephone: 1 changes
🔔 Event: association_change
Count: 9
📦 Object Type: deal
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 3
🔔 Event: property_change
Count: 13
Properties:
📝 dealstage: 4 changes
📝 hs_deal_stage_probability: 5 changes
📝 dealname: 1 changes
📝 closedate: 1 changes
📝 hs_manual_forecast_category: 1 changes
📝 amount: 1 changes
INFO Looking for metrics: Config 1049 (Classavo - 851), Date 2026-04-16.
📊 Webhook Metrics for Config 1049 (Classavo - 851)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 2
📦 Object Type: contact
🔔 Event: association_change
Count: 1
🔔 Event: property_change
Count: 3
Properties:
📝 firstname: 1 changes
📝 lastname: 1 changes
📝 jobtitle: 1 changes
📦 Object Type: deal
🔔 Event: association_change
Count: 3
🔔 Event: property_change
Count: 14
Properties:
📝 dealstage: 4 changes
📝 hs_deal_stage_probability: 5 changes
📝 closedate: 3 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
🔔 Event: creation
Count: 1
INFO Looking for metrics: Config 290 (D1 Training - 308), Date 2026-04-16.
📊 Webhook Metrics for Config 290 (D1 Training - 308)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 5
Properties:
📝 name: 4 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 6
📦 Object Type: deal
🔔 Event: association_change
Count: 40
🔔 Event: creation
Count: 35
🔔 Event: property_change
Count: 405
Properties:
📝 hs_deal_stage_probability: 149 changes
📝 dealtype: 34 changes
📝 dealstage: 114 changes
📝 hubspot_owner_id: 5 changes
📝 closedate: 97 changes
📝 dealname: 3 changes
📝 pipeline: 2 changes
📝 hs_manual_forecast_category: 1 changes
📦 Object Type: contact
🔔 Event: creation
Count: 50
🔔 Event: property_change
Count: 314
Properties:
📝 lastname: 53 changes
📝 email: 46 changes
📝 firstname: 58 changes
📝 mobilephone: 26 changes
📝 phone: 70 changes
📝 hubspot_owner_id: 59 changes
📝 associatedcompanyid: 2 changes
🔔 Event: association_change
Count: 42
INFO Looking for metrics: Config 1019 (SimpleConsign - 1088), Date 2026-04-16.
📊 Webhook Metrics for Config 1019 (SimpleConsign - 1088)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 692
🔔 Event: property_change
Count: 2659
Properties:
📝 email: 334 changes
📝 hubspot_owner_id: 980 changes
📝 associatedcompanyid: 327 changes
📝 lastname: 332 changes
📝 phone: 20 changes
📝 firstname: 333 changes
📝 jobtitle: 321 changes
📝 mobilephone: 7 changes
📝 country: 5 changes
🔔 Event: creation
Count: 335
📦 Object Type: company
🔔 Event: association_change
Count: 698
🔔 Event: property_change
Count: 637
Properties:
📝 domain: 310 changes
📝 name: 312 changes
📝 phone: 5 changes
📝 hubspot_owner_id: 4 changes
📝 country: 3 changes
📝 industry: 3 changes
🔔 Event: creation
Count: 312
📦 Object Type: deal
🔔 Event: association_change
Count: 46
🔔 Event: creation
Count: 9
INFO Looking for metrics: Config 311 (Lemon.io - 329), Date 2026-04-16.
📊 Webhook Metrics for Config 311 (Lemon.io - 329)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 128
Properties:
📝 domain: 26 changes
📝 name: 24 changes
📝 industry: 18 changes
📝 country: 17 changes
📝 hubspot_owner_id: 32 changes
📝 phone: 11 changes
🔔 Event: creation
Count: 26
🔔 Event: association_change
Count: 120
📦 Object Type: deal
🔔 Event: creation
Count: 16
🔔 Event: property_change
Count: 385
Properties:
📝 closedate: 21 changes
📝 dealstage: 49 changes
📝 days_to_close: 19 changes
📝 hs_deal_stage_probability: 58 changes
📝 hs_manual_forecast_category: 34 changes
📝 hs_next_step: 14 changes
📝 level_of_involvement: 15 changes
📝 hubspot_owner_id: 20 changes
📝 freelancers_under_review: 31 changes
📝 pipeline: 8 changes
📝 dealname: 30 changes
📝 deal_currency_code: 8 changes
📝 amount: 13 changes
📝 hs_priority: 8 changes
📝 budget_limitations: 6 changes
📝 need: 7 changes
📝 positive_outcome: 6 changes
📝 competition: 6 changes
📝 negative_consequences: 6 changes
📝 selection_process: 8 changes
📝 project_team_structure: 7 changes
📝 champion: 6 changes
📝 red_flags: 5 changes
🔔 Event: association_change
Count: 63
📦 Object Type: contact
🔔 Event: property_change
Count: 336
Properties:
📝 hubspot_owner_id: 74 changes
📝 email: 56 changes
📝 firstname: 52 changes
📝 lastname: 48 changes
📝 country: 21 changes
📝 jobtitle: 26 changes
📝 associatedcompanyid: 39 changes
📝 phone: 15 changes
📝 mobilephone: 5 changes
🔔 Event: association_change
Count: 103
🔔 Event: creation
Count: 54
INFO Looking for metrics: Config 802 (Street Group - 853), Date 2026-04-16.
📊 Webhook Metrics for Config 802 (Street Group - 853)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 252
🔔 Event: association_change
Count: 558
🔔 Event: property_change
Count: 1830
Properties:
📝 phone: 170 changes
📝 lastname: 306 changes
📝 firstname: 318 changes
📝 email: 297 changes
📝 country: 287 changes
📝 jobtitle: 208 changes
📝 associatedcompanyid: 180 changes
📝 hubspot_owner_id: 52 changes
📝 mobilephone: 12 changes
📦 Object Type: company
🔔 Event: association_change
Count: 617
🔔 Event: creation
Count: 31
🔔 Event: property_change
Count: 94
Properties:
📝 industry: 6 changes
📝 country: 10 changes
📝 phone: 10 changes
📝 name: 22 changes
📝 domain: 35 changes
📝 hubspot_owner_id: 11 changes
📦 Object Type: deal
🔔 Event: association_change
Count: 121
🔔 Event: property_change
Count: 338
Properties:
📝 hs_deal_stage_probability: 78 changes
📝 deal_currency_code: 22 changes
📝 amount: 36 changes
📝 closedate: 42 changes
📝 dealstage: 91 changes
📝 dealtype: 2 changes
📝 hs_manual_forecast_category: 28 changes
📝 dealname: 8 changes
📝 hs_forecast_probability: 16 changes
📝 invoice_start_date: 8 changes
📝 hubspot_owner_id: 7 changes
🔔 Event: creation
Count: 23
INFO Looking for metrics: Config 1053 (Sensi.AI - 1117), Date 2026-04-16.
📊 Webhook Metrics for Config 1053 (Sensi.AI - 1117)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 156
Properties:
📝 domain: 32 changes
📝 phone: 23 changes
📝 industry: 27 changes
📝 country: 29 changes
📝 name: 39 changes
📝 hubspot_owner_id: 6 changes
🔔 Event: creation
Count: 39
🔔 Event: association_change
Count: 1499
📦 Object Type: deal
🔔 Event: property_change
Count: 491
Properties:
📝 hs_deal_stage_probability: 96 changes
📝 hs_next_step: 46 changes
📝 next_steps_jiminny: 38 changes
📝 hubspot_owner_id: 17 changes
📝 monthly_billable_hours: 10 changes
📝 closedate: 18 changes
📝 amount: 119 changes
📝 deal_currency_code: 115 changes
📝 dealstage: 23 changes
📝 dealname: 4 changes
📝 client_segmentation_jiminny: 1 changes
📝 pain_points__main_objections: 1 changes
📝 product_feedback: 1 changes
📝 red_flags: 1 changes
📝 competitors: 1 changes
🔔 Event: association_change
Count: 98
🔔 Event: creation
Count: 74
📦 Object Type: contact
🔔 Event: association_change
Count: 1577
🔔 Event: property_change
Count: 3768
Properties:
📝 email: 857 changes
📝 mobilephone: 104 changes
📝 lastname: 854 changes
📝 jobtitle: 98 changes
📝 phone: 130 changes
📝 firstname: 870 changes
📝 hubspot_owner_id: 92 changes
📝 associatedcompanyid: 737 changes
📝 country: 26 changes
🔔 Event: creation
Count: 872
INFO Looking for metrics: Config 87 (Repsly - 93), Date 2026-04-16.
📊 Webhook Metrics for Config 87 (Repsly - 93)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 295
🔔 Event: property_change
Count: 1285
Properties:
📝 lastname: 150 changes
📝 email: 128 changes
📝 firstname: 162 changes
📝 associatedcompanyid: 145 changes
📝 country: 130 changes
📝 hubspot_owner_id: 175 changes
📝 mobilephone: 203 changes
📝 phone: 60 changes
📝 jobtitle: 132 changes
🔔 Event: creation
Count: 159
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: association_change
Count: 13
🔔 Event: property_change
Count: 23
Properties:
📝 hs_deal_stage_probability: 4 changes
📝 amount: 14 changes
📝 hubspot_owner_id: 1 changes
📝 closedate: 2 changes
📝 hs_next_step: 1 changes
📝 dealstage: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 298
🔔 Event: property_change
Count: 23
Properties:
📝 domain: 9 changes
📝 country: 4 changes
📝 name: 6 changes
📝 hubspot_owner_id: 3 changes
📝 phone: 1 changes
🔔 Event: creation
Count: 9
INFO Looking for metrics: Config 518 (Prolific - 544), Date 2026-04-16.
📊 Webhook Metrics for Config 518 (Prolific - 544)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: property_change
Count: 14
Properties:
📝 amount: 3 changes
📝 hs_deal_stage_probability: 4 changes
📝 dealname: 3 changes
📝 closedate: 3 changes
📝 dealstage: 1 changes
🔔 Event: creation
Count: 3
🔔 Event: association_change
Count: 9
📦 Object Type: contact
🔔 Event: creation
Count: 534
🔔 Event: property_change
Count: 7533
Properties:
📝 jobtitle: 73 changes
📝 phone: 2 changes
📝 email: 561 changes
📝 lastname: 81 changes
📝 firstname: 90 changes
📝 associatedcompanyid: 166 changes
📝 hubspot_owner_id: 6151 changes
📝 country: 409 changes
🔔 Event: association_change
Count: 349
📦 Object Type: company
🔔 Event: creation
Count: 30
🔔 Event: association_change
Count: 352
🔔 Event: property_change
Count: 575
Properties:
📝 domain: 30 changes
📝 country: 421 changes
📝 phone: 12 changes
📝 industry: 18 changes
📝 name: 23 changes
📝 hubspot_owner_id: 71 changes
INFO Looking for metrics: Config 761 (Ressio Software - 770), Date 2026-04-16.
📊 Webhook Metrics for Config 761 (Ressio Software - 770)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 1370
Properties:
📝 hubspot_owner_id: 471 changes
📝 domain: 199 changes
📝 name: 202 changes
📝 country: 163 changes
📝 industry: 170 changes
📝 phone: 165 changes
🔔 Event: creation
Count: 207
🔔 Event: association_change
Count: 435
📦 Object Type: contact
🔔 Event: property_change
Count: 1582
Properties:
📝 hubspot_owner_id: 476 changes
📝 phone: 155 changes
📝 mobilephone: 97 changes
📝 lastname: 153 changes
📝 email: 109 changes
📝 associatedcompanyid: 160 changes
📝 firstname: 163 changes
📝 jobtitle: 139 changes
📝 country: 130 changes
🔔 Event: creation
Count: 152
🔔 Event: association_change
Count: 386
📦 Object Type: deal
🔔 Event: property_change
Count: 119
Properties:
📝 closedate: 16 changes
📝 dealstage: 36 changes
📝 hs_deal_stage_probability: 53 changes
📝 hubspot_owner_id: 9 changes
📝 amount: 5 changes
🔔 Event: creation
Count: 17
🔔 Event: association_change
Count: 119
INFO Looking for metrics: Config 537 (Mobiz - 563), Date 2026-04-16.
📊 Webhook Metrics for Config 537 (Mobiz - 563)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 19
🔔 Event: property_change
Count: 751
Properties:
📝 email: 26 changes
📝 lastname: 18 changes
📝 phone: 15 changes
📝 hubspot_owner_id: 630 changes
📝 firstname: 21 changes
📝 country: 9 changes
📝 jobtitle: 14 changes
📝 associatedcompanyid: 15 changes
📝 mobilephone: 3 changes
🔔 Event: association_change
Count: 35
📦 Object Type: company
🔔 Event: association_change
Count: 36
🔔 Event: property_change
Count: 24
Properties:
📝 hubspot_owner_id: 6 changes
📝 domain: 5 changes
📝 country: 4 changes
📝 industry: 4 changes
📝 name: 4 changes
📝 phone: 1 changes
🔔 Event: creation
Count: 4
📦 Object Type: deal
🔔 Event: property_change
Count: 1
Properties:
📝 hs_deal_stage_probability: 1 changes
🔔 Event: association_change
Count: 3
🔔 Event: creation
Count: 1
INFO Looking for metrics: Config 428 (Welcome to the Jungle UK - 461), Date 2026-04-16.
📊 Webhook Metrics for Config 428 (Welcome to the Jungle UK - 461)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 107
🔔 Event: property_change
Count: 352
Properties:
📝 firstname: 34 changes
📝 email: 35 changes
📝 lastname: 32 changes
📝 associatedcompanyid: 37 changes
📝 country: 29 changes
📝 jobtitle: 29 changes
📝 phone: 43 changes
📝 hubspot_owner_id: 108 changes
📝 mobilephone: 5 changes
🔔 Event: creation
Count: 32
📦 Object Type: deal
🔔 Event: property_change
Count: 225
Properties:
📝 hs_deal_stage_probability: 53 changes
📝 product: 7 changes
📝 closedate: 20 changes
📝 dealstage: 40 changes
📝 hs_manual_forecast_category: 31 changes
📝 amount: 26 changes
📝 deal_currency_code: 17 changes
📝 dealname: 5 changes
📝 segment: 16 changes
📝 hs_next_step: 6 changes
📝 deal_source: 4 changes
🔔 Event: creation
Count: 14
🔔 Event: association_change
Count: 41
📦 Object Type: company
🔔 Event: property_change
Count: 34
Properties:
📝 hubspot_owner_id: 18 changes
📝 domain: 9 changes
📝 name: 7 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 130
INFO Looking for metrics: Config 581 (Penfold - 606), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"📝\u0000 jobtitle: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 82\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 28\n\n 🔔\u0000 Event: property_change\n Count: 153\n Properties:\n 📝\u0000 dealstage: 48 changes\n 📝\u0000 hs_deal_stage_probability: 59 changes\n 📝\u0000 deal_currency_code: 3 changes\n 📝\u0000 amount: 3 changes\n 📝\u0000 closedate: 11 changes\n 📝\u0000 dealtype: 28 changes\n 📝\u0000 dealname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 85\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 86\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 domain: 6 changes\n 📝\u0000 name: 4 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n\n INFO Looking for metrics: Config 801 (Rise Vision - 852), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 801 (Rise Vision - 852)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 57\n\n 🔔\u0000 Event: property_change\n Count: 117\n Properties:\n 📝\u0000 closedate: 20 changes\n 📝\u0000 dealstage: 10 changes\n 📝\u0000 hs_deal_stage_probability: 25 changes\n 📝\u0000 hs_manual_forecast_category: 25 changes\n 📝\u0000 amount: 29 changes\n 📝\u0000 dealname: 5 changes\n 📝\u0000 pipeline: 2 changes\n 📝\u0000 hs_next_step: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 149\n\n 🔔\u0000 Event: creation\n Count: 26\n\n 🔔\u0000 Event: property_change\n Count: 73\n Properties:\n 📝\u0000 industry: 26 changes\n 📝\u0000 country: 19 changes\n 📝\u0000 name: 26 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 domain: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 95\n\n 🔔\u0000 Event: association_change\n Count: 150\n\n 🔔\u0000 Event: property_change\n Count: 418\n Properties:\n 📝\u0000 email: 93 changes\n 📝\u0000 firstname: 90 changes\n 📝\u0000 lastname: 87 changes\n 📝\u0000 associatedcompanyid: 46 changes\n 📝\u0000 phone: 31 changes\n 📝\u0000 jobtitle: 21 changes\n 📝\u0000 hubspot_owner_id: 37 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 country: 10 changes\n\n\n INFO Looking for metrics: Config 834 (AnyVan.com - 882), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 834 (AnyVan.com - 882)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5687\n Properties:\n 📝\u0000 name: 4629 changes\n 📝\u0000 domain: 154 changes\n 📝\u0000 hubspot_owner_id: 904 changes\n\n 🔔\u0000 Event: association_change\n Count: 25219\n\n 🔔\u0000 Event: creation\n Count: 4689\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 54620\n Properties:\n 📝\u0000 hubspot_owner_id: 2837 changes\n 📝\u0000 email: 4471 changes\n 📝\u0000 phone: 3661 changes\n 📝\u0000 lastname: 16150 changes\n 📝\u0000 firstname: 22622 changes\n 📝\u0000 associatedcompanyid: 4860 changes\n 📝\u0000 mobilephone: 13 changes\n 📝\u0000 jobtitle: 5 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 4471\n\n 🔔\u0000 Event: association_change\n Count: 17648\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 7588\n\n 🔔\u0000 Event: property_change\n Count: 82720\n Properties:\n 📝\u0000 dealname: 4204 changes\n 📝\u0000 amount: 22594 changes\n 📝\u0000 hs_deal_stage_probability: 17646 changes\n 📝\u0000 pipeline: 4356 changes\n 📝\u0000 dealstage: 14626 changes\n 📝\u0000 closedate: 11096 changes\n 📝\u0000 hubspot_owner_id: 6094 changes\n 📝\u0000 selected_date: 1969 changes\n 📝\u0000 deal_currency_code: 135 changes\n\n 🔔\u0000 Event: association_change\n Count: 22773\n\n\n INFO Looking for metrics: Config 878 (Dingus and Zazzy - 929), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 878 (Dingus and Zazzy - 929)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 158\n Properties:\n 📝\u0000 amount_in_home_currency: 24 changes\n 📝\u0000 hs_deal_stage_probability: 35 changes\n 📝\u0000 hs_manual_forecast_category: 27 changes\n 📝\u0000 closedate: 23 changes\n 📝\u0000 lost_reason: 9 changes\n 📝\u0000 dealstage: 27 changes\n 📝\u0000 dealname: 9 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 source_attribution: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: association_change\n Count: 52\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 59\n Properties:\n 📝\u0000 domain: 14 changes\n 📝\u0000 name: 14 changes\n 📝\u0000 hubspot_owner_id: 17 changes\n 📝\u0000 industry: 5 changes\n 📝\u0000 phone: 4 changes\n 📝\u0000 country: 5 changes\n\n 🔔\u0000 Event: association_change\n Count: 69\n\n 🔔\u0000 Event: creation\n Count: 14\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 192\n Properties:\n 📝\u0000 phone: 8 changes\n 📝\u0000 lastname: 22 changes\n 📝\u0000 firstname: 22 changes\n 📝\u0000 jobtitle: 20 changes\n 📝\u0000 hubspot_owner_id: 76 changes\n 📝\u0000 email: 17 changes\n 📝\u0000 associatedcompanyid: 16 changes\n 📝\u0000 mobilephone: 11 changes\n\n 🔔\u0000 Event: association_change\n Count: 53\n\n 🔔\u0000 Event: creation\n Count: 20\n\n\n INFO Looking for metrics: Config 671 (CosmosID - 691), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 671 (CosmosID - 691)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 15\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 name: 5 changes\n 📝\u0000 domain: 3 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 44\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 78\n Properties:\n 📝\u0000 hs_deal_stage_probability: 14 changes\n 📝\u0000 createdate: 10 changes\n 📝\u0000 hs_manual_forecast_category: 13 changes\n 📝\u0000 deal_currency_code: 4 changes\n 📝\u0000 amount: 20 changes\n 📝\u0000 closedate: 8 changes\n 📝\u0000 dealstage: 4 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 dealtype: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 30\n\n 🔔\u0000 Event: creation\n Count: 10\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 13\n\n 🔔\u0000 Event: property_change\n Count: 145\n Properties:\n 📝\u0000 jobtitle: 77 changes\n 📝\u0000 hubspot_owner_id: 12 changes\n 📝\u0000 firstname: 9 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 lastname: 8 changes\n 📝\u0000 email: 13 changes\n 📝\u0000 associatedcompanyid: 12 changes\n 📝\u0000 country: 9 changes\n\n 🔔\u0000 Event: association_change\n Count: 34\n\n\n INFO Looking for metrics: Config 652 (Abode - 673), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 652 (Abode - 673)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 1\n Properties:\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 40\n Properties:\n 📝\u0000 phone: 3 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 email: 6 changes\n 📝\u0000 associatedcompanyid: 4 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 lastname: 5 changes\n 📝\u0000 jobtitle: 4 changes\n 📝\u0000 firstname: 5 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 13\n Properties:\n 📝\u0000 dealstage: 4 changes\n 📝\u0000 hs_deal_stage_probability: 5 changes\n 📝\u0000 dealname: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 hs_manual_forecast_category: 1 changes\n 📝\u0000 amount: 1 changes\n\n\n INFO Looking for metrics: Config 1049 (Classavo - 851), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1049 (Classavo - 851)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 firstname: 1 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 jobtitle: 1 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 dealstage: 4 changes\n 📝\u0000 hs_deal_stage_probability: 5 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 1\n\n\n INFO Looking for metrics: Config 290 (D1 Training - 308), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 290 (D1 Training - 308)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 name: 4 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 6\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 40\n\n 🔔\u0000 Event: creation\n Count: 35\n\n 🔔\u0000 Event: property_change\n Count: 405\n Properties:\n 📝\u0000 hs_deal_stage_probability: 149 changes\n 📝\u0000 dealtype: 34 changes\n 📝\u0000 dealstage: 114 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 closedate: 97 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 2 changes\n 📝\u0000 hs_manual_forecast_category: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 50\n\n 🔔\u0000 Event: property_change\n Count: 314\n Properties:\n 📝\u0000 lastname: 53 changes\n 📝\u0000 email: 46 changes\n 📝\u0000 firstname: 58 changes\n 📝\u0000 mobilephone: 26 changes\n 📝\u0000 phone: 70 changes\n 📝\u0000 hubspot_owner_id: 59 changes\n 📝\u0000 associatedcompanyid: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 42\n\n\n INFO Looking for metrics: Config 1019 (SimpleConsign - 1088), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1019 (SimpleConsign - 1088)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 692\n\n 🔔\u0000 Event: property_change\n Count: 2659\n Properties:\n 📝\u0000 email: 334 changes\n 📝\u0000 hubspot_owner_id: 980 changes\n 📝\u0000 associatedcompanyid: 327 changes\n 📝\u0000 lastname: 332 changes\n 📝\u0000 phone: 20 changes\n 📝\u0000 firstname: 333 changes\n 📝\u0000 jobtitle: 321 changes\n 📝\u0000 mobilephone: 7 changes\n 📝\u0000 country: 5 changes\n\n 🔔\u0000 Event: creation\n Count: 335\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 698\n\n 🔔\u0000 Event: property_change\n Count: 637\n Properties:\n 📝\u0000 domain: 310 changes\n 📝\u0000 name: 312 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 country: 3 changes\n 📝\u0000 industry: 3 changes\n\n 🔔\u0000 Event: creation\n Count: 312\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 46\n\n 🔔\u0000 Event: creation\n Count: 9\n\n\n INFO Looking for metrics: Config 311 (Lemon.io - 329), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 311 (Lemon.io - 329)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 128\n Properties:\n 📝\u0000 domain: 26 changes\n 📝\u0000 name: 24 changes\n 📝\u0000 industry: 18 changes\n 📝\u0000 country: 17 changes\n 📝\u0000 hubspot_owner_id: 32 changes\n 📝\u0000 phone: 11 changes\n\n 🔔\u0000 Event: creation\n Count: 26\n\n 🔔\u0000 Event: association_change\n Count: 120\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 385\n Properties:\n 📝\u0000 closedate: 21 changes\n 📝\u0000 dealstage: 49 changes\n 📝\u0000 days_to_close: 19 changes\n 📝\u0000 hs_deal_stage_probability: 58 changes\n 📝\u0000 hs_manual_forecast_category: 34 changes\n 📝\u0000 hs_next_step: 14 changes\n 📝\u0000 level_of_involvement: 15 changes\n 📝\u0000 hubspot_owner_id: 20 changes\n 📝\u0000 freelancers_under_review: 31 changes\n 📝\u0000 pipeline: 8 changes\n 📝\u0000 dealname: 30 changes\n 📝\u0000 deal_currency_code: 8 changes\n 📝\u0000 amount: 13 changes\n 📝\u0000 hs_priority: 8 changes\n 📝\u0000 budget_limitations: 6 changes\n 📝\u0000 need: 7 changes\n 📝\u0000 positive_outcome: 6 changes\n 📝\u0000 competition: 6 changes\n 📝\u0000 negative_consequences: 6 changes\n 📝\u0000 selection_process: 8 changes\n 📝\u0000 project_team_structure: 7 changes\n 📝\u0000 champion: 6 changes\n 📝\u0000 red_flags: 5 changes\n\n 🔔\u0000 Event: association_change\n Count: 63\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 336\n Properties:\n 📝\u0000 hubspot_owner_id: 74 changes\n 📝\u0000 email: 56 changes\n 📝\u0000 firstname: 52 changes\n 📝\u0000 lastname: 48 changes\n 📝\u0000 country: 21 changes\n 📝\u0000 jobtitle: 26 changes\n 📝\u0000 associatedcompanyid: 39 changes\n 📝\u0000 phone: 15 changes\n 📝\u0000 mobilephone: 5 changes\n\n 🔔\u0000 Event: association_change\n Count: 103\n\n 🔔\u0000 Event: creation\n Count: 54\n\n\n INFO Looking for metrics: Config 802 (Street Group - 853), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 802 (Street Group - 853)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 252\n\n 🔔\u0000 Event: association_change\n Count: 558\n\n 🔔\u0000 Event: property_change\n Count: 1830\n Properties:\n 📝\u0000 phone: 170 changes\n 📝\u0000 lastname: 306 changes\n 📝\u0000 firstname: 318 changes\n 📝\u0000 email: 297 changes\n 📝\u0000 country: 287 changes\n 📝\u0000 jobtitle: 208 changes\n 📝\u0000 associatedcompanyid: 180 changes\n 📝\u0000 hubspot_owner_id: 52 changes\n 📝\u0000 mobilephone: 12 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 617\n\n 🔔\u0000 Event: creation\n Count: 31\n\n 🔔\u0000 Event: property_change\n Count: 94\n Properties:\n 📝\u0000 industry: 6 changes\n 📝\u0000 country: 10 changes\n 📝\u0000 phone: 10 changes\n 📝\u0000 name: 22 changes\n 📝\u0000 domain: 35 changes\n 📝\u0000 hubspot_owner_id: 11 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 121\n\n 🔔\u0000 Event: property_change\n Count: 338\n Properties:\n 📝\u0000 hs_deal_stage_probability: 78 changes\n 📝\u0000 deal_currency_code: 22 changes\n 📝\u0000 amount: 36 changes\n 📝\u0000 closedate: 42 changes\n 📝\u0000 dealstage: 91 changes\n 📝\u0000 dealtype: 2 changes\n 📝\u0000 hs_manual_forecast_category: 28 changes\n 📝\u0000 dealname: 8 changes\n 📝\u0000 hs_forecast_probability: 16 changes\n 📝\u0000 invoice_start_date: 8 changes\n 📝\u0000 hubspot_owner_id: 7 changes\n\n 🔔\u0000 Event: creation\n Count: 23\n\n\n INFO Looking for metrics: Config 1053 (Sensi.AI - 1117), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1053 (Sensi.AI - 1117)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 156\n Properties:\n 📝\u0000 domain: 32 changes\n 📝\u0000 phone: 23 changes\n 📝\u0000 industry: 27 changes\n 📝\u0000 country: 29 changes\n 📝\u0000 name: 39 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 39\n\n 🔔\u0000 Event: association_change\n Count: 1499\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 491\n Properties:\n 📝\u0000 hs_deal_stage_probability: 96 changes\n 📝\u0000 hs_next_step: 46 changes\n 📝\u0000 next_steps_jiminny: 38 changes\n 📝\u0000 hubspot_owner_id: 17 changes\n 📝\u0000 monthly_billable_hours: 10 changes\n 📝\u0000 closedate: 18 changes\n 📝\u0000 amount: 119 changes\n 📝\u0000 deal_currency_code: 115 changes\n 📝\u0000 dealstage: 23 changes\n 📝\u0000 dealname: 4 changes\n 📝\u0000 client_segmentation_jiminny: 1 changes\n 📝\u0000 pain_points__main_objections: 1 changes\n 📝\u0000 product_feedback: 1 changes\n 📝\u0000 red_flags: 1 changes\n 📝\u0000 competitors: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 98\n\n 🔔\u0000 Event: creation\n Count: 74\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 1577\n\n 🔔\u0000 Event: property_change\n Count: 3768\n Properties:\n 📝\u0000 email: 857 changes\n 📝\u0000 mobilephone: 104 changes\n 📝\u0000 lastname: 854 changes\n 📝\u0000 jobtitle: 98 changes\n 📝\u0000 phone: 130 changes\n 📝\u0000 firstname: 870 changes\n 📝\u0000 hubspot_owner_id: 92 changes\n 📝\u0000 associatedcompanyid: 737 changes\n 📝\u0000 country: 26 changes\n\n 🔔\u0000 Event: creation\n Count: 872\n\n\n INFO Looking for metrics: Config 87 (Repsly - 93), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 87 (Repsly - 93)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 295\n\n 🔔\u0000 Event: property_change\n Count: 1285\n Properties:\n 📝\u0000 lastname: 150 changes\n 📝\u0000 email: 128 changes\n 📝\u0000 firstname: 162 changes\n 📝\u0000 associatedcompanyid: 145 changes\n 📝\u0000 country: 130 changes\n 📝\u0000 hubspot_owner_id: 175 changes\n 📝\u0000 mobilephone: 203 changes\n 📝\u0000 phone: 60 changes\n 📝\u0000 jobtitle: 132 changes\n\n 🔔\u0000 Event: creation\n Count: 159\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: association_change\n Count: 13\n\n 🔔\u0000 Event: property_change\n Count: 23\n Properties:\n 📝\u0000 hs_deal_stage_probability: 4 changes\n 📝\u0000 amount: 14 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 closedate: 2 changes\n 📝\u0000 hs_next_step: 1 changes\n 📝\u0000 dealstage: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 298\n\n 🔔\u0000 Event: property_change\n Count: 23\n Properties:\n 📝\u0000 domain: 9 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 name: 6 changes\n 📝\u0000 hubspot_owner_id: 3 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n\n INFO Looking for metrics: Config 518 (Prolific - 544), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 518 (Prolific - 544)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 amount: 3 changes\n 📝\u0000 hs_deal_stage_probability: 4 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 dealstage: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 534\n\n 🔔\u0000 Event: property_change\n Count: 7533\n Properties:\n 📝\u0000 jobtitle: 73 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 email: 561 changes\n 📝\u0000 lastname: 81 changes\n 📝\u0000 firstname: 90 changes\n 📝\u0000 associatedcompanyid: 166 changes\n 📝\u0000 hubspot_owner_id: 6151 changes\n 📝\u0000 country: 409 changes\n\n 🔔\u0000 Event: association_change\n Count: 349\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 30\n\n 🔔\u0000 Event: association_change\n Count: 352\n\n 🔔\u0000 Event: property_change\n Count: 575\n Properties:\n 📝\u0000 domain: 30 changes\n 📝\u0000 country: 421 changes\n 📝\u0000 phone: 12 changes\n 📝\u0000 industry: 18 changes\n 📝\u0000 name: 23 changes\n 📝\u0000 hubspot_owner_id: 71 changes\n\n\n INFO Looking for metrics: Config 761 (Ressio Software - 770), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 761 (Ressio Software - 770)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 1370\n Properties:\n 📝\u0000 hubspot_owner_id: 471 changes\n 📝\u0000 domain: 199 changes\n 📝\u0000 name: 202 changes\n 📝\u0000 country: 163 changes\n 📝\u0000 industry: 170 changes\n 📝\u0000 phone: 165 changes\n\n 🔔\u0000 Event: creation\n Count: 207\n\n 🔔\u0000 Event: association_change\n Count: 435\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 1582\n Properties:\n 📝\u0000 hubspot_owner_id: 476 changes\n 📝\u0000 phone: 155 changes\n 📝\u0000 mobilephone: 97 changes\n 📝\u0000 lastname: 153 changes\n 📝\u0000 email: 109 changes\n 📝\u0000 associatedcompanyid: 160 changes\n 📝\u0000 firstname: 163 changes\n 📝\u0000 jobtitle: 139 changes\n 📝\u0000 country: 130 changes\n\n 🔔\u0000 Event: creation\n Count: 152\n\n 🔔\u0000 Event: association_change\n Count: 386\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 119\n Properties:\n 📝\u0000 closedate: 16 changes\n 📝\u0000 dealstage: 36 changes\n 📝\u0000 hs_deal_stage_probability: 53 changes\n 📝\u0000 hubspot_owner_id: 9 changes\n 📝\u0000 amount: 5 changes\n\n 🔔\u0000 Event: creation\n Count: 17\n\n 🔔\u0000 Event: association_change\n Count: 119\n\n\n INFO Looking for metrics: Config 537 (Mobiz - 563), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 537 (Mobiz - 563)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 19\n\n 🔔\u0000 Event: property_change\n Count: 751\n Properties:\n 📝\u0000 email: 26 changes\n 📝\u0000 lastname: 18 changes\n 📝\u0000 phone: 15 changes\n 📝\u0000 hubspot_owner_id: 630 changes\n 📝\u0000 firstname: 21 changes\n 📝\u0000 country: 9 changes\n 📝\u0000 jobtitle: 14 changes\n 📝\u0000 associatedcompanyid: 15 changes\n 📝\u0000 mobilephone: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 35\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 36\n\n 🔔\u0000 Event: property_change\n Count: 24\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 domain: 5 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 industry: 4 changes\n 📝\u0000 name: 4 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1\n Properties:\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: creation\n Count: 1\n\n\n INFO Looking for metrics: Config 428 (Welcome to the Jungle UK - 461), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 428 (Welcome to the Jungle UK - 461)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 107\n\n 🔔\u0000 Event: property_change\n Count: 352\n Properties:\n 📝\u0000 firstname: 34 changes\n 📝\u0000 email: 35 changes\n 📝\u0000 lastname: 32 changes\n 📝\u0000 associatedcompanyid: 37 changes\n 📝\u0000 country: 29 changes\n 📝\u0000 jobtitle: 29 changes\n 📝\u0000 phone: 43 changes\n 📝\u0000 hubspot_owner_id: 108 changes\n 📝\u0000 mobilephone: 5 changes\n\n 🔔\u0000 Event: creation\n Count: 32\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 225\n Properties:\n 📝\u0000 hs_deal_stage_probability: 53 changes\n 📝\u0000 product: 7 changes\n 📝\u0000 closedate: 20 changes\n 📝\u0000 dealstage: 40 changes\n 📝\u0000 hs_manual_forecast_category: 31 changes\n 📝\u0000 amount: 26 changes\n 📝\u0000 deal_currency_code: 17 changes\n 📝\u0000 dealname: 5 changes\n 📝\u0000 segment: 16 changes\n 📝\u0000 hs_next_step: 6 changes\n 📝\u0000 deal_source: 4 changes\n\n 🔔\u0000 Event: creation\n Count: 14\n\n 🔔\u0000 Event: association_change\n Count: 41\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 34\n Properties:\n 📝\u0000 hubspot_owner_id: 18 changes\n 📝\u0000 domain: 9 changes\n 📝\u0000 name: 7 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 130\n\n\n INFO Looking for metrics: Config 581 (Penfold - 606), Date 2026-04-16.","depth":4,"value":"📝\u0000 jobtitle: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 82\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 28\n\n 🔔\u0000 Event: property_change\n Count: 153\n Properties:\n 📝\u0000 dealstage: 48 changes\n 📝\u0000 hs_deal_stage_probability: 59 changes\n 📝\u0000 deal_currency_code: 3 changes\n 📝\u0000 amount: 3 changes\n 📝\u0000 closedate: 11 changes\n 📝\u0000 dealtype: 28 changes\n 📝\u0000 dealname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 85\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 86\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 domain: 6 changes\n 📝\u0000 name: 4 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n\n INFO Looking for metrics: Config 801 (Rise Vision - 852), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 801 (Rise Vision - 852)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 57\n\n 🔔\u0000 Event: property_change\n Count: 117\n Properties:\n 📝\u0000 closedate: 20 changes\n 📝\u0000 dealstage: 10 changes\n 📝\u0000 hs_deal_stage_probability: 25 changes\n 📝\u0000 hs_manual_forecast_category: 25 changes\n 📝\u0000 amount: 29 changes\n 📝\u0000 dealname: 5 changes\n 📝\u0000 pipeline: 2 changes\n 📝\u0000 hs_next_step: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 149\n\n 🔔\u0000 Event: creation\n Count: 26\n\n 🔔\u0000 Event: property_change\n Count: 73\n Properties:\n 📝\u0000 industry: 26 changes\n 📝\u0000 country: 19 changes\n 📝\u0000 name: 26 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 domain: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 95\n\n 🔔\u0000 Event: association_change\n Count: 150\n\n 🔔\u0000 Event: property_change\n Count: 418\n Properties:\n 📝\u0000 email: 93 changes\n 📝\u0000 firstname: 90 changes\n 📝\u0000 lastname: 87 changes\n 📝\u0000 associatedcompanyid: 46 changes\n 📝\u0000 phone: 31 changes\n 📝\u0000 jobtitle: 21 changes\n 📝\u0000 hubspot_owner_id: 37 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 country: 10 changes\n\n\n INFO Looking for metrics: Config 834 (AnyVan.com - 882), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 834 (AnyVan.com - 882)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5687\n Properties:\n 📝\u0000 name: 4629 changes\n 📝\u0000 domain: 154 changes\n 📝\u0000 hubspot_owner_id: 904 changes\n\n 🔔\u0000 Event: association_change\n Count: 25219\n\n 🔔\u0000 Event: creation\n Count: 4689\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 54620\n Properties:\n 📝\u0000 hubspot_owner_id: 2837 changes\n 📝\u0000 email: 4471 changes\n 📝\u0000 phone: 3661 changes\n 📝\u0000 lastname: 16150 changes\n 📝\u0000 firstname: 22622 changes\n 📝\u0000 associatedcompanyid: 4860 changes\n 📝\u0000 mobilephone: 13 changes\n 📝\u0000 jobtitle: 5 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 4471\n\n 🔔\u0000 Event: association_change\n Count: 17648\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 7588\n\n 🔔\u0000 Event: property_change\n Count: 82720\n Properties:\n 📝\u0000 dealname: 4204 changes\n 📝\u0000 amount: 22594 changes\n 📝\u0000 hs_deal_stage_probability: 17646 changes\n 📝\u0000 pipeline: 4356 changes\n 📝\u0000 dealstage: 14626 changes\n 📝\u0000 closedate: 11096 changes\n 📝\u0000 hubspot_owner_id: 6094 changes\n 📝\u0000 selected_date: 1969 changes\n 📝\u0000 deal_currency_code: 135 changes\n\n 🔔\u0000 Event: association_change\n Count: 22773\n\n\n INFO Looking for metrics: Config 878 (Dingus and Zazzy - 929), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 878 (Dingus and Zazzy - 929)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 158\n Properties:\n 📝\u0000 amount_in_home_currency: 24 changes\n 📝\u0000 hs_deal_stage_probability: 35 changes\n 📝\u0000 hs_manual_forecast_category: 27 changes\n 📝\u0000 closedate: 23 changes\n 📝\u0000 lost_reason: 9 changes\n 📝\u0000 dealstage: 27 changes\n 📝\u0000 dealname: 9 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 source_attribution: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: association_change\n Count: 52\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 59\n Properties:\n 📝\u0000 domain: 14 changes\n 📝\u0000 name: 14 changes\n 📝\u0000 hubspot_owner_id: 17 changes\n 📝\u0000 industry: 5 changes\n 📝\u0000 phone: 4 changes\n 📝\u0000 country: 5 changes\n\n 🔔\u0000 Event: association_change\n Count: 69\n\n 🔔\u0000 Event: creation\n Count: 14\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 192\n Properties:\n 📝\u0000 phone: 8 changes\n 📝\u0000 lastname: 22 changes\n 📝\u0000 firstname: 22 changes\n 📝\u0000 jobtitle: 20 changes\n 📝\u0000 hubspot_owner_id: 76 changes\n 📝\u0000 email: 17 changes\n 📝\u0000 associatedcompanyid: 16 changes\n 📝\u0000 mobilephone: 11 changes\n\n 🔔\u0000 Event: association_change\n Count: 53\n\n 🔔\u0000 Event: creation\n Count: 20\n\n\n INFO Looking for metrics: Config 671 (CosmosID - 691), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 671 (CosmosID - 691)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 15\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 name: 5 changes\n 📝\u0000 domain: 3 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 44\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 78\n Properties:\n 📝\u0000 hs_deal_stage_probability: 14 changes\n 📝\u0000 createdate: 10 changes\n 📝\u0000 hs_manual_forecast_category: 13 changes\n 📝\u0000 deal_currency_code: 4 changes\n 📝\u0000 amount: 20 changes\n 📝\u0000 closedate: 8 changes\n 📝\u0000 dealstage: 4 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 dealtype: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 30\n\n 🔔\u0000 Event: creation\n Count: 10\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 13\n\n 🔔\u0000 Event: property_change\n Count: 145\n Properties:\n 📝\u0000 jobtitle: 77 changes\n 📝\u0000 hubspot_owner_id: 12 changes\n 📝\u0000 firstname: 9 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 lastname: 8 changes\n 📝\u0000 email: 13 changes\n 📝\u0000 associatedcompanyid: 12 changes\n 📝\u0000 country: 9 changes\n\n 🔔\u0000 Event: association_change\n Count: 34\n\n\n INFO Looking for metrics: Config 652 (Abode - 673), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 652 (Abode - 673)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 1\n Properties:\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 40\n Properties:\n 📝\u0000 phone: 3 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 email: 6 changes\n 📝\u0000 associatedcompanyid: 4 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 lastname: 5 changes\n 📝\u0000 jobtitle: 4 changes\n 📝\u0000 firstname: 5 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 13\n Properties:\n 📝\u0000 dealstage: 4 changes\n 📝\u0000 hs_deal_stage_probability: 5 changes\n 📝\u0000 dealname: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 hs_manual_forecast_category: 1 changes\n 📝\u0000 amount: 1 changes\n\n\n INFO Looking for metrics: Config 1049 (Classavo - 851), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1049 (Classavo - 851)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 firstname: 1 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 jobtitle: 1 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 dealstage: 4 changes\n 📝\u0000 hs_deal_stage_probability: 5 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 1\n\n\n INFO Looking for metrics: Config 290 (D1 Training - 308), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 290 (D1 Training - 308)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 name: 4 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 6\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 40\n\n 🔔\u0000 Event: creation\n Count: 35\n\n 🔔\u0000 Event: property_change\n Count: 405\n Properties:\n 📝\u0000 hs_deal_stage_probability: 149 changes\n 📝\u0000 dealtype: 34 changes\n 📝\u0000 dealstage: 114 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 closedate: 97 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 2 changes\n 📝\u0000 hs_manual_forecast_category: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 50\n\n 🔔\u0000 Event: property_change\n Count: 314\n Properties:\n 📝\u0000 lastname: 53 changes\n 📝\u0000 email: 46 changes\n 📝\u0000 firstname: 58 changes\n 📝\u0000 mobilephone: 26 changes\n 📝\u0000 phone: 70 changes\n 📝\u0000 hubspot_owner_id: 59 changes\n 📝\u0000 associatedcompanyid: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 42\n\n\n INFO Looking for metrics: Config 1019 (SimpleConsign - 1088), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1019 (SimpleConsign - 1088)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 692\n\n 🔔\u0000 Event: property_change\n Count: 2659\n Properties:\n 📝\u0000 email: 334 changes\n 📝\u0000 hubspot_owner_id: 980 changes\n 📝\u0000 associatedcompanyid: 327 changes\n 📝\u0000 lastname: 332 changes\n 📝\u0000 phone: 20 changes\n 📝\u0000 firstname: 333 changes\n 📝\u0000 jobtitle: 321 changes\n 📝\u0000 mobilephone: 7 changes\n 📝\u0000 country: 5 changes\n\n 🔔\u0000 Event: creation\n Count: 335\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 698\n\n 🔔\u0000 Event: property_change\n Count: 637\n Properties:\n 📝\u0000 domain: 310 changes\n 📝\u0000 name: 312 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 country: 3 changes\n 📝\u0000 industry: 3 changes\n\n 🔔\u0000 Event: creation\n Count: 312\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 46\n\n 🔔\u0000 Event: creation\n Count: 9\n\n\n INFO Looking for metrics: Config 311 (Lemon.io - 329), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 311 (Lemon.io - 329)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 128\n Properties:\n 📝\u0000 domain: 26 changes\n 📝\u0000 name: 24 changes\n 📝\u0000 industry: 18 changes\n 📝\u0000 country: 17 changes\n 📝\u0000 hubspot_owner_id: 32 changes\n 📝\u0000 phone: 11 changes\n\n 🔔\u0000 Event: creation\n Count: 26\n\n 🔔\u0000 Event: association_change\n Count: 120\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 385\n Properties:\n 📝\u0000 closedate: 21 changes\n 📝\u0000 dealstage: 49 changes\n 📝\u0000 days_to_close: 19 changes\n 📝\u0000 hs_deal_stage_probability: 58 changes\n 📝\u0000 hs_manual_forecast_category: 34 changes\n 📝\u0000 hs_next_step: 14 changes\n 📝\u0000 level_of_involvement: 15 changes\n 📝\u0000 hubspot_owner_id: 20 changes\n 📝\u0000 freelancers_under_review: 31 changes\n 📝\u0000 pipeline: 8 changes\n 📝\u0000 dealname: 30 changes\n 📝\u0000 deal_currency_code: 8 changes\n 📝\u0000 amount: 13 changes\n 📝\u0000 hs_priority: 8 changes\n 📝\u0000 budget_limitations: 6 changes\n 📝\u0000 need: 7 changes\n 📝\u0000 positive_outcome: 6 changes\n 📝\u0000 competition: 6 changes\n 📝\u0000 negative_consequences: 6 changes\n 📝\u0000 selection_process: 8 changes\n 📝\u0000 project_team_structure: 7 changes\n 📝\u0000 champion: 6 changes\n 📝\u0000 red_flags: 5 changes\n\n 🔔\u0000 Event: association_change\n Count: 63\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 336\n Properties:\n 📝\u0000 hubspot_owner_id: 74 changes\n 📝\u0000 email: 56 changes\n 📝\u0000 firstname: 52 changes\n 📝\u0000 lastname: 48 changes\n 📝\u0000 country: 21 changes\n 📝\u0000 jobtitle: 26 changes\n 📝\u0000 associatedcompanyid: 39 changes\n 📝\u0000 phone: 15 changes\n 📝\u0000 mobilephone: 5 changes\n\n 🔔\u0000 Event: association_change\n Count: 103\n\n 🔔\u0000 Event: creation\n Count: 54\n\n\n INFO Looking for metrics: Config 802 (Street Group - 853), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 802 (Street Group - 853)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 252\n\n 🔔\u0000 Event: association_change\n Count: 558\n\n 🔔\u0000 Event: property_change\n Count: 1830\n Properties:\n 📝\u0000 phone: 170 changes\n 📝\u0000 lastname: 306 changes\n 📝\u0000 firstname: 318 changes\n 📝\u0000 email: 297 changes\n 📝\u0000 country: 287 changes\n 📝\u0000 jobtitle: 208 changes\n 📝\u0000 associatedcompanyid: 180 changes\n 📝\u0000 hubspot_owner_id: 52 changes\n 📝\u0000 mobilephone: 12 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 617\n\n 🔔\u0000 Event: creation\n Count: 31\n\n 🔔\u0000 Event: property_change\n Count: 94\n Properties:\n 📝\u0000 industry: 6 changes\n 📝\u0000 country: 10 changes\n 📝\u0000 phone: 10 changes\n 📝\u0000 name: 22 changes\n 📝\u0000 domain: 35 changes\n 📝\u0000 hubspot_owner_id: 11 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 121\n\n 🔔\u0000 Event: property_change\n Count: 338\n Properties:\n 📝\u0000 hs_deal_stage_probability: 78 changes\n 📝\u0000 deal_currency_code: 22 changes\n 📝\u0000 amount: 36 changes\n 📝\u0000 closedate: 42 changes\n 📝\u0000 dealstage: 91 changes\n 📝\u0000 dealtype: 2 changes\n 📝\u0000 hs_manual_forecast_category: 28 changes\n 📝\u0000 dealname: 8 changes\n 📝\u0000 hs_forecast_probability: 16 changes\n 📝\u0000 invoice_start_date: 8 changes\n 📝\u0000 hubspot_owner_id: 7 changes\n\n 🔔\u0000 Event: creation\n Count: 23\n\n\n INFO Looking for metrics: Config 1053 (Sensi.AI - 1117), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1053 (Sensi.AI - 1117)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 156\n Properties:\n 📝\u0000 domain: 32 changes\n 📝\u0000 phone: 23 changes\n 📝\u0000 industry: 27 changes\n 📝\u0000 country: 29 changes\n 📝\u0000 name: 39 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 39\n\n 🔔\u0000 Event: association_change\n Count: 1499\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 491\n Properties:\n 📝\u0000 hs_deal_stage_probability: 96 changes\n 📝\u0000 hs_next_step: 46 changes\n 📝\u0000 next_steps_jiminny: 38 changes\n 📝\u0000 hubspot_owner_id: 17 changes\n 📝\u0000 monthly_billable_hours: 10 changes\n 📝\u0000 closedate: 18 changes\n 📝\u0000 amount: 119 changes\n 📝\u0000 deal_currency_code: 115 changes\n 📝\u0000 dealstage: 23 changes\n 📝\u0000 dealname: 4 changes\n 📝\u0000 client_segmentation_jiminny: 1 changes\n 📝\u0000 pain_points__main_objections: 1 changes\n 📝\u0000 product_feedback: 1 changes\n 📝\u0000 red_flags: 1 changes\n 📝\u0000 competitors: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 98\n\n 🔔\u0000 Event: creation\n Count: 74\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 1577\n\n 🔔\u0000 Event: property_change\n Count: 3768\n Properties:\n 📝\u0000 email: 857 changes\n 📝\u0000 mobilephone: 104 changes\n 📝\u0000 lastname: 854 changes\n 📝\u0000 jobtitle: 98 changes\n 📝\u0000 phone: 130 changes\n 📝\u0000 firstname: 870 changes\n 📝\u0000 hubspot_owner_id: 92 changes\n 📝\u0000 associatedcompanyid: 737 changes\n 📝\u0000 country: 26 changes\n\n 🔔\u0000 Event: creation\n Count: 872\n\n\n INFO Looking for metrics: Config 87 (Repsly - 93), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 87 (Repsly - 93)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 295\n\n 🔔\u0000 Event: property_change\n Count: 1285\n Properties:\n 📝\u0000 lastname: 150 changes\n 📝\u0000 email: 128 changes\n 📝\u0000 firstname: 162 changes\n 📝\u0000 associatedcompanyid: 145 changes\n 📝\u0000 country: 130 changes\n 📝\u0000 hubspot_owner_id: 175 changes\n 📝\u0000 mobilephone: 203 changes\n 📝\u0000 phone: 60 changes\n 📝\u0000 jobtitle: 132 changes\n\n 🔔\u0000 Event: creation\n Count: 159\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: association_change\n Count: 13\n\n 🔔\u0000 Event: property_change\n Count: 23\n Properties:\n 📝\u0000 hs_deal_stage_probability: 4 changes\n 📝\u0000 amount: 14 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 closedate: 2 changes\n 📝\u0000 hs_next_step: 1 changes\n 📝\u0000 dealstage: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 298\n\n 🔔\u0000 Event: property_change\n Count: 23\n Properties:\n 📝\u0000 domain: 9 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 name: 6 changes\n 📝\u0000 hubspot_owner_id: 3 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n\n INFO Looking for metrics: Config 518 (Prolific - 544), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 518 (Prolific - 544)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 amount: 3 changes\n 📝\u0000 hs_deal_stage_probability: 4 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 dealstage: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 534\n\n 🔔\u0000 Event: property_change\n Count: 7533\n Properties:\n 📝\u0000 jobtitle: 73 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 email: 561 changes\n 📝\u0000 lastname: 81 changes\n 📝\u0000 firstname: 90 changes\n 📝\u0000 associatedcompanyid: 166 changes\n 📝\u0000 hubspot_owner_id: 6151 changes\n 📝\u0000 country: 409 changes\n\n 🔔\u0000 Event: association_change\n Count: 349\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 30\n\n 🔔\u0000 Event: association_change\n Count: 352\n\n 🔔\u0000 Event: property_change\n Count: 575\n Properties:\n 📝\u0000 domain: 30 changes\n 📝\u0000 country: 421 changes\n 📝\u0000 phone: 12 changes\n 📝\u0000 industry: 18 changes\n 📝\u0000 name: 23 changes\n 📝\u0000 hubspot_owner_id: 71 changes\n\n\n INFO Looking for metrics: Config 761 (Ressio Software - 770), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 761 (Ressio Software - 770)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 1370\n Properties:\n 📝\u0000 hubspot_owner_id: 471 changes\n 📝\u0000 domain: 199 changes\n 📝\u0000 name: 202 changes\n 📝\u0000 country: 163 changes\n 📝\u0000 industry: 170 changes\n 📝\u0000 phone: 165 changes\n\n 🔔\u0000 Event: creation\n Count: 207\n\n 🔔\u0000 Event: association_change\n Count: 435\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 1582\n Properties:\n 📝\u0000 hubspot_owner_id: 476 changes\n 📝\u0000 phone: 155 changes\n 📝\u0000 mobilephone: 97 changes\n 📝\u0000 lastname: 153 changes\n 📝\u0000 email: 109 changes\n 📝\u0000 associatedcompanyid: 160 changes\n 📝\u0000 firstname: 163 changes\n 📝\u0000 jobtitle: 139 changes\n 📝\u0000 country: 130 changes\n\n 🔔\u0000 Event: creation\n Count: 152\n\n 🔔\u0000 Event: association_change\n Count: 386\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 119\n Properties:\n 📝\u0000 closedate: 16 changes\n 📝\u0000 dealstage: 36 changes\n 📝\u0000 hs_deal_stage_probability: 53 changes\n 📝\u0000 hubspot_owner_id: 9 changes\n 📝\u0000 amount: 5 changes\n\n 🔔\u0000 Event: creation\n Count: 17\n\n 🔔\u0000 Event: association_change\n Count: 119\n\n\n INFO Looking for metrics: Config 537 (Mobiz - 563), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 537 (Mobiz - 563)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 19\n\n 🔔\u0000 Event: property_change\n Count: 751\n Properties:\n 📝\u0000 email: 26 changes\n 📝\u0000 lastname: 18 changes\n 📝\u0000 phone: 15 changes\n 📝\u0000 hubspot_owner_id: 630 changes\n 📝\u0000 firstname: 21 changes\n 📝\u0000 country: 9 changes\n 📝\u0000 jobtitle: 14 changes\n 📝\u0000 associatedcompanyid: 15 changes\n 📝\u0000 mobilephone: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 35\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 36\n\n 🔔\u0000 Event: property_change\n Count: 24\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 domain: 5 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 industry: 4 changes\n 📝\u0000 name: 4 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1\n Properties:\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: creation\n Count: 1\n\n\n INFO Looking for metrics: Config 428 (Welcome to the Jungle UK - 461), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 428 (Welcome to the Jungle UK - 461)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 107\n\n 🔔\u0000 Event: property_change\n Count: 352\n Properties:\n 📝\u0000 firstname: 34 changes\n 📝\u0000 email: 35 changes\n 📝\u0000 lastname: 32 changes\n 📝\u0000 associatedcompanyid: 37 changes\n 📝\u0000 country: 29 changes\n 📝\u0000 jobtitle: 29 changes\n 📝\u0000 phone: 43 changes\n 📝\u0000 hubspot_owner_id: 108 changes\n 📝\u0000 mobilephone: 5 changes\n\n 🔔\u0000 Event: creation\n Count: 32\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 225\n Properties:\n 📝\u0000 hs_deal_stage_probability: 53 changes\n 📝\u0000 product: 7 changes\n 📝\u0000 closedate: 20 changes\n 📝\u0000 dealstage: 40 changes\n 📝\u0000 hs_manual_forecast_category: 31 changes\n 📝\u0000 amount: 26 changes\n 📝\u0000 deal_currency_code: 17 changes\n 📝\u0000 dealname: 5 changes\n 📝\u0000 segment: 16 changes\n 📝\u0000 hs_next_step: 6 changes\n 📝\u0000 deal_source: 4 changes\n\n 🔔\u0000 Event: creation\n Count: 14\n\n 🔔\u0000 Event: association_change\n Count: 41\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 34\n Properties:\n 📝\u0000 hubspot_owner_id: 18 changes\n 📝\u0000 domain: 9 changes\n 📝\u0000 name: 7 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 130\n\n\n INFO Looking for metrics: Config 581 (Penfold - 606), Date 2026-04-16.","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
-6916705689786174882
|
7901245624159709559
|
idle
|
accessibility
|
NULL
|
📝 jobtitle: 2 changes
🔔 Event: creation
📝 jobtitle: 2 changes
🔔 Event: creation
Count: 82
📦 Object Type: deal
🔔 Event: creation
Count: 28
🔔 Event: property_change
Count: 153
Properties:
📝 dealstage: 48 changes
📝 hs_deal_stage_probability: 59 changes
📝 deal_currency_code: 3 changes
📝 amount: 3 changes
📝 closedate: 11 changes
📝 dealtype: 28 changes
📝 dealname: 1 changes
🔔 Event: association_change
Count: 85
📦 Object Type: company
🔔 Event: association_change
Count: 86
🔔 Event: property_change
Count: 11
Properties:
📝 domain: 6 changes
📝 name: 4 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: creation
Count: 4
INFO Looking for metrics: Config 801 (Rise Vision - 852), Date 2026-04-16.
📊 Webhook Metrics for Config 801 (Rise Vision - 852)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: association_change
Count: 57
🔔 Event: property_change
Count: 117
Properties:
📝 closedate: 20 changes
📝 dealstage: 10 changes
📝 hs_deal_stage_probability: 25 changes
📝 hs_manual_forecast_category: 25 changes
📝 amount: 29 changes
📝 dealname: 5 changes
📝 pipeline: 2 changes
📝 hs_next_step: 1 changes
🔔 Event: creation
Count: 16
📦 Object Type: company
🔔 Event: association_change
Count: 149
🔔 Event: creation
Count: 26
🔔 Event: property_change
Count: 73
Properties:
📝 industry: 26 changes
📝 country: 19 changes
📝 name: 26 changes
📝 phone: 1 changes
📝 domain: 1 changes
📦 Object Type: contact
🔔 Event: creation
Count: 95
🔔 Event: association_change
Count: 150
🔔 Event: property_change
Count: 418
Properties:
📝 email: 93 changes
📝 firstname: 90 changes
📝 lastname: 87 changes
📝 associatedcompanyid: 46 changes
📝 phone: 31 changes
📝 jobtitle: 21 changes
📝 hubspot_owner_id: 37 changes
📝 mobilephone: 3 changes
📝 country: 10 changes
INFO Looking for metrics: Config 834 (AnyVan.com - 882), Date 2026-04-16.
📊 Webhook Metrics for Config 834 (AnyVan.com - 882)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 5687
Properties:
📝 name: 4629 changes
📝 domain: 154 changes
📝 hubspot_owner_id: 904 changes
🔔 Event: association_change
Count: 25219
🔔 Event: creation
Count: 4689
📦 Object Type: contact
🔔 Event: property_change
Count: 54620
Properties:
📝 hubspot_owner_id: 2837 changes
📝 email: 4471 changes
📝 phone: 3661 changes
📝 lastname: 16150 changes
📝 firstname: 22622 changes
📝 associatedcompanyid: 4860 changes
📝 mobilephone: 13 changes
📝 jobtitle: 5 changes
📝 country: 1 changes
🔔 Event: creation
Count: 4471
🔔 Event: association_change
Count: 17648
📦 Object Type: deal
🔔 Event: creation
Count: 7588
🔔 Event: property_change
Count: 82720
Properties:
📝 dealname: 4204 changes
📝 amount: 22594 changes
📝 hs_deal_stage_probability: 17646 changes
📝 pipeline: 4356 changes
📝 dealstage: 14626 changes
📝 closedate: 11096 changes
📝 hubspot_owner_id: 6094 changes
📝 selected_date: 1969 changes
📝 deal_currency_code: 135 changes
🔔 Event: association_change
Count: 22773
INFO Looking for metrics: Config 878 (Dingus and Zazzy - 929), Date 2026-04-16.
📊 Webhook Metrics for Config 878 (Dingus and Zazzy - 929)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: property_change
Count: 158
Properties:
📝 amount_in_home_currency: 24 changes
📝 hs_deal_stage_probability: 35 changes
📝 hs_manual_forecast_category: 27 changes
📝 closedate: 23 changes
📝 lost_reason: 9 changes
📝 dealstage: 27 changes
📝 dealname: 9 changes
📝 hubspot_owner_id: 2 changes
📝 source_attribution: 2 changes
🔔 Event: creation
Count: 18
🔔 Event: association_change
Count: 52
📦 Object Type: company
🔔 Event: property_change
Count: 59
Properties:
📝 domain: 14 changes
📝 name: 14 changes
📝 hubspot_owner_id: 17 changes
📝 industry: 5 changes
📝 phone: 4 changes
📝 country: 5 changes
🔔 Event: association_change
Count: 69
🔔 Event: creation
Count: 14
📦 Object Type: contact
🔔 Event: property_change
Count: 192
Properties:
📝 phone: 8 changes
📝 lastname: 22 changes
📝 firstname: 22 changes
📝 jobtitle: 20 changes
📝 hubspot_owner_id: 76 changes
📝 email: 17 changes
📝 associatedcompanyid: 16 changes
📝 mobilephone: 11 changes
🔔 Event: association_change
Count: 53
🔔 Event: creation
Count: 20
INFO Looking for metrics: Config 671 (CosmosID - 691), Date 2026-04-16.
📊 Webhook Metrics for Config 671 (CosmosID - 691)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 15
Properties:
📝 hubspot_owner_id: 6 changes
📝 name: 5 changes
📝 domain: 3 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 44
📦 Object Type: deal
🔔 Event: property_change
Count: 78
Properties:
📝 hs_deal_stage_probability: 14 changes
📝 createdate: 10 changes
📝 hs_manual_forecast_category: 13 changes
📝 deal_currency_code: 4 changes
📝 amount: 20 changes
📝 closedate: 8 changes
📝 dealstage: 4 changes
📝 dealname: 3 changes
📝 dealtype: 1 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: association_change
Count: 30
🔔 Event: creation
Count: 10
📦 Object Type: contact
🔔 Event: creation
Count: 13
🔔 Event: property_change
Count: 145
Properties:
📝 jobtitle: 77 changes
📝 hubspot_owner_id: 12 changes
📝 firstname: 9 changes
📝 phone: 5 changes
📝 lastname: 8 changes
📝 email: 13 changes
📝 associatedcompanyid: 12 changes
📝 country: 9 changes
🔔 Event: association_change
Count: 34
INFO Looking for metrics: Config 652 (Abode - 673), Date 2026-04-16.
📊 Webhook Metrics for Config 652 (Abode - 673)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 1
Properties:
📝 country: 1 changes
🔔 Event: association_change
Count: 10
📦 Object Type: contact
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 40
Properties:
📝 phone: 3 changes
📝 hubspot_owner_id: 8 changes
📝 email: 6 changes
📝 associatedcompanyid: 4 changes
📝 country: 4 changes
📝 lastname: 5 changes
📝 jobtitle: 4 changes
📝 firstname: 5 changes
📝 mobilephone: 1 changes
🔔 Event: association_change
Count: 9
📦 Object Type: deal
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 3
🔔 Event: property_change
Count: 13
Properties:
📝 dealstage: 4 changes
📝 hs_deal_stage_probability: 5 changes
📝 dealname: 1 changes
📝 closedate: 1 changes
📝 hs_manual_forecast_category: 1 changes
📝 amount: 1 changes
INFO Looking for metrics: Config 1049 (Classavo - 851), Date 2026-04-16.
📊 Webhook Metrics for Config 1049 (Classavo - 851)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 2
📦 Object Type: contact
🔔 Event: association_change
Count: 1
🔔 Event: property_change
Count: 3
Properties:
📝 firstname: 1 changes
📝 lastname: 1 changes
📝 jobtitle: 1 changes
📦 Object Type: deal
🔔 Event: association_change
Count: 3
🔔 Event: property_change
Count: 14
Properties:
📝 dealstage: 4 changes
📝 hs_deal_stage_probability: 5 changes
📝 closedate: 3 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
🔔 Event: creation
Count: 1
INFO Looking for metrics: Config 290 (D1 Training - 308), Date 2026-04-16.
📊 Webhook Metrics for Config 290 (D1 Training - 308)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 5
Properties:
📝 name: 4 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 6
📦 Object Type: deal
🔔 Event: association_change
Count: 40
🔔 Event: creation
Count: 35
🔔 Event: property_change
Count: 405
Properties:
📝 hs_deal_stage_probability: 149 changes
📝 dealtype: 34 changes
📝 dealstage: 114 changes
📝 hubspot_owner_id: 5 changes
📝 closedate: 97 changes
📝 dealname: 3 changes
📝 pipeline: 2 changes
📝 hs_manual_forecast_category: 1 changes
📦 Object Type: contact
🔔 Event: creation
Count: 50
🔔 Event: property_change
Count: 314
Properties:
📝 lastname: 53 changes
📝 email: 46 changes
📝 firstname: 58 changes
📝 mobilephone: 26 changes
📝 phone: 70 changes
📝 hubspot_owner_id: 59 changes
📝 associatedcompanyid: 2 changes
🔔 Event: association_change
Count: 42
INFO Looking for metrics: Config 1019 (SimpleConsign - 1088), Date 2026-04-16.
📊 Webhook Metrics for Config 1019 (SimpleConsign - 1088)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 692
🔔 Event: property_change
Count: 2659
Properties:
📝 email: 334 changes
📝 hubspot_owner_id: 980 changes
📝 associatedcompanyid: 327 changes
📝 lastname: 332 changes
📝 phone: 20 changes
📝 firstname: 333 changes
📝 jobtitle: 321 changes
📝 mobilephone: 7 changes
📝 country: 5 changes
🔔 Event: creation
Count: 335
📦 Object Type: company
🔔 Event: association_change
Count: 698
🔔 Event: property_change
Count: 637
Properties:
📝 domain: 310 changes
📝 name: 312 changes
📝 phone: 5 changes
📝 hubspot_owner_id: 4 changes
📝 country: 3 changes
📝 industry: 3 changes
🔔 Event: creation
Count: 312
📦 Object Type: deal
🔔 Event: association_change
Count: 46
🔔 Event: creation
Count: 9
INFO Looking for metrics: Config 311 (Lemon.io - 329), Date 2026-04-16.
📊 Webhook Metrics for Config 311 (Lemon.io - 329)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 128
Properties:
📝 domain: 26 changes
📝 name: 24 changes
📝 industry: 18 changes
📝 country: 17 changes
📝 hubspot_owner_id: 32 changes
📝 phone: 11 changes
🔔 Event: creation
Count: 26
🔔 Event: association_change
Count: 120
📦 Object Type: deal
🔔 Event: creation
Count: 16
🔔 Event: property_change
Count: 385
Properties:
📝 closedate: 21 changes
📝 dealstage: 49 changes
📝 days_to_close: 19 changes
📝 hs_deal_stage_probability: 58 changes
📝 hs_manual_forecast_category: 34 changes
📝 hs_next_step: 14 changes
📝 level_of_involvement: 15 changes
📝 hubspot_owner_id: 20 changes
📝 freelancers_under_review: 31 changes
📝 pipeline: 8 changes
📝 dealname: 30 changes
📝 deal_currency_code: 8 changes
📝 amount: 13 changes
📝 hs_priority: 8 changes
📝 budget_limitations: 6 changes
📝 need: 7 changes
📝 positive_outcome: 6 changes
📝 competition: 6 changes
📝 negative_consequences: 6 changes
📝 selection_process: 8 changes
📝 project_team_structure: 7 changes
📝 champion: 6 changes
📝 red_flags: 5 changes
🔔 Event: association_change
Count: 63
📦 Object Type: contact
🔔 Event: property_change
Count: 336
Properties:
📝 hubspot_owner_id: 74 changes
📝 email: 56 changes
📝 firstname: 52 changes
📝 lastname: 48 changes
📝 country: 21 changes
📝 jobtitle: 26 changes
📝 associatedcompanyid: 39 changes
📝 phone: 15 changes
📝 mobilephone: 5 changes
🔔 Event: association_change
Count: 103
🔔 Event: creation
Count: 54
INFO Looking for metrics: Config 802 (Street Group - 853), Date 2026-04-16.
📊 Webhook Metrics for Config 802 (Street Group - 853)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 252
🔔 Event: association_change
Count: 558
🔔 Event: property_change
Count: 1830
Properties:
📝 phone: 170 changes
📝 lastname: 306 changes
📝 firstname: 318 changes
📝 email: 297 changes
📝 country: 287 changes
📝 jobtitle: 208 changes
📝 associatedcompanyid: 180 changes
📝 hubspot_owner_id: 52 changes
📝 mobilephone: 12 changes
📦 Object Type: company
🔔 Event: association_change
Count: 617
🔔 Event: creation
Count: 31
🔔 Event: property_change
Count: 94
Properties:
📝 industry: 6 changes
📝 country: 10 changes
📝 phone: 10 changes
📝 name: 22 changes
📝 domain: 35 changes
📝 hubspot_owner_id: 11 changes
📦 Object Type: deal
🔔 Event: association_change
Count: 121
🔔 Event: property_change
Count: 338
Properties:
📝 hs_deal_stage_probability: 78 changes
📝 deal_currency_code: 22 changes
📝 amount: 36 changes
📝 closedate: 42 changes
📝 dealstage: 91 changes
📝 dealtype: 2 changes
📝 hs_manual_forecast_category: 28 changes
📝 dealname: 8 changes
📝 hs_forecast_probability: 16 changes
📝 invoice_start_date: 8 changes
📝 hubspot_owner_id: 7 changes
🔔 Event: creation
Count: 23
INFO Looking for metrics: Config 1053 (Sensi.AI - 1117), Date 2026-04-16.
📊 Webhook Metrics for Config 1053 (Sensi.AI - 1117)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 156
Properties:
📝 domain: 32 changes
📝 phone: 23 changes
📝 industry: 27 changes
📝 country: 29 changes
📝 name: 39 changes
📝 hubspot_owner_id: 6 changes
🔔 Event: creation
Count: 39
🔔 Event: association_change
Count: 1499
📦 Object Type: deal
🔔 Event: property_change
Count: 491
Properties:
📝 hs_deal_stage_probability: 96 changes
📝 hs_next_step: 46 changes
📝 next_steps_jiminny: 38 changes
📝 hubspot_owner_id: 17 changes
📝 monthly_billable_hours: 10 changes
📝 closedate: 18 changes
📝 amount: 119 changes
📝 deal_currency_code: 115 changes
📝 dealstage: 23 changes
📝 dealname: 4 changes
📝 client_segmentation_jiminny: 1 changes
📝 pain_points__main_objections: 1 changes
📝 product_feedback: 1 changes
📝 red_flags: 1 changes
📝 competitors: 1 changes
🔔 Event: association_change
Count: 98
🔔 Event: creation
Count: 74
📦 Object Type: contact
🔔 Event: association_change
Count: 1577
🔔 Event: property_change
Count: 3768
Properties:
📝 email: 857 changes
📝 mobilephone: 104 changes
📝 lastname: 854 changes
📝 jobtitle: 98 changes
📝 phone: 130 changes
📝 firstname: 870 changes
📝 hubspot_owner_id: 92 changes
📝 associatedcompanyid: 737 changes
📝 country: 26 changes
🔔 Event: creation
Count: 872
INFO Looking for metrics: Config 87 (Repsly - 93), Date 2026-04-16.
📊 Webhook Metrics for Config 87 (Repsly - 93)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 295
🔔 Event: property_change
Count: 1285
Properties:
📝 lastname: 150 changes
📝 email: 128 changes
📝 firstname: 162 changes
📝 associatedcompanyid: 145 changes
📝 country: 130 changes
📝 hubspot_owner_id: 175 changes
📝 mobilephone: 203 changes
📝 phone: 60 changes
📝 jobtitle: 132 changes
🔔 Event: creation
Count: 159
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: association_change
Count: 13
🔔 Event: property_change
Count: 23
Properties:
📝 hs_deal_stage_probability: 4 changes
📝 amount: 14 changes
📝 hubspot_owner_id: 1 changes
📝 closedate: 2 changes
📝 hs_next_step: 1 changes
📝 dealstage: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 298
🔔 Event: property_change
Count: 23
Properties:
📝 domain: 9 changes
📝 country: 4 changes
📝 name: 6 changes
📝 hubspot_owner_id: 3 changes
📝 phone: 1 changes
🔔 Event: creation
Count: 9
INFO Looking for metrics: Config 518 (Prolific - 544), Date 2026-04-16.
📊 Webhook Metrics for Config 518 (Prolific - 544)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: property_change
Count: 14
Properties:
📝 amount: 3 changes
📝 hs_deal_stage_probability: 4 changes
📝 dealname: 3 changes
📝 closedate: 3 changes
📝 dealstage: 1 changes
🔔 Event: creation
Count: 3
🔔 Event: association_change
Count: 9
📦 Object Type: contact
🔔 Event: creation
Count: 534
🔔 Event: property_change
Count: 7533
Properties:
📝 jobtitle: 73 changes
📝 phone: 2 changes
📝 email: 561 changes
📝 lastname: 81 changes
📝 firstname: 90 changes
📝 associatedcompanyid: 166 changes
📝 hubspot_owner_id: 6151 changes
📝 country: 409 changes
🔔 Event: association_change
Count: 349
📦 Object Type: company
🔔 Event: creation
Count: 30
🔔 Event: association_change
Count: 352
🔔 Event: property_change
Count: 575
Properties:
📝 domain: 30 changes
📝 country: 421 changes
📝 phone: 12 changes
📝 industry: 18 changes
📝 name: 23 changes
📝 hubspot_owner_id: 71 changes
INFO Looking for metrics: Config 761 (Ressio Software - 770), Date 2026-04-16.
📊 Webhook Metrics for Config 761 (Ressio Software - 770)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 1370
Properties:
📝 hubspot_owner_id: 471 changes
📝 domain: 199 changes
📝 name: 202 changes
📝 country: 163 changes
📝 industry: 170 changes
📝 phone: 165 changes
🔔 Event: creation
Count: 207
🔔 Event: association_change
Count: 435
📦 Object Type: contact
🔔 Event: property_change
Count: 1582
Properties:
📝 hubspot_owner_id: 476 changes
📝 phone: 155 changes
📝 mobilephone: 97 changes
📝 lastname: 153 changes
📝 email: 109 changes
📝 associatedcompanyid: 160 changes
📝 firstname: 163 changes
📝 jobtitle: 139 changes
📝 country: 130 changes
🔔 Event: creation
Count: 152
🔔 Event: association_change
Count: 386
📦 Object Type: deal
🔔 Event: property_change
Count: 119
Properties:
📝 closedate: 16 changes
📝 dealstage: 36 changes
📝 hs_deal_stage_probability: 53 changes
📝 hubspot_owner_id: 9 changes
📝 amount: 5 changes
🔔 Event: creation
Count: 17
🔔 Event: association_change
Count: 119
INFO Looking for metrics: Config 537 (Mobiz - 563), Date 2026-04-16.
📊 Webhook Metrics for Config 537 (Mobiz - 563)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 19
🔔 Event: property_change
Count: 751
Properties:
📝 email: 26 changes
📝 lastname: 18 changes
📝 phone: 15 changes
📝 hubspot_owner_id: 630 changes
📝 firstname: 21 changes
📝 country: 9 changes
📝 jobtitle: 14 changes
📝 associatedcompanyid: 15 changes
📝 mobilephone: 3 changes
🔔 Event: association_change
Count: 35
📦 Object Type: company
🔔 Event: association_change
Count: 36
🔔 Event: property_change
Count: 24
Properties:
📝 hubspot_owner_id: 6 changes
📝 domain: 5 changes
📝 country: 4 changes
📝 industry: 4 changes
📝 name: 4 changes
📝 phone: 1 changes
🔔 Event: creation
Count: 4
📦 Object Type: deal
🔔 Event: property_change
Count: 1
Properties:
📝 hs_deal_stage_probability: 1 changes
🔔 Event: association_change
Count: 3
🔔 Event: creation
Count: 1
INFO Looking for metrics: Config 428 (Welcome to the Jungle UK - 461), Date 2026-04-16.
📊 Webhook Metrics for Config 428 (Welcome to the Jungle UK - 461)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 107
🔔 Event: property_change
Count: 352
Properties:
📝 firstname: 34 changes
📝 email: 35 changes
📝 lastname: 32 changes
📝 associatedcompanyid: 37 changes
📝 country: 29 changes
📝 jobtitle: 29 changes
📝 phone: 43 changes
📝 hubspot_owner_id: 108 changes
📝 mobilephone: 5 changes
🔔 Event: creation
Count: 32
📦 Object Type: deal
🔔 Event: property_change
Count: 225
Properties:
📝 hs_deal_stage_probability: 53 changes
📝 product: 7 changes
📝 closedate: 20 changes
📝 dealstage: 40 changes
📝 hs_manual_forecast_category: 31 changes
📝 amount: 26 changes
📝 deal_currency_code: 17 changes
📝 dealname: 5 changes
📝 segment: 16 changes
📝 hs_next_step: 6 changes
📝 deal_source: 4 changes
🔔 Event: creation
Count: 14
🔔 Event: association_change
Count: 41
📦 Object Type: company
🔔 Event: property_change
Count: 34
Properties:
📝 hubspot_owner_id: 18 changes
📝 domain: 9 changes
📝 name: 7 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 130
INFO Looking for metrics: Config 581 (Penfold - 606), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
69500
|
|
69496
|
1599
|
1
|
2026-04-22T08:12:28.373313+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845548373_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
📝 email: 438 changes
📝 associatedcom 📝 email: 438 changes
📝 associatedcompanyid: 405 changes
📝 jobtitle: 760 changes
📝 firstname: 423 changes
📝 lastname: 320 changes
📝 hubspot_owner_id: 66 changes
📝 country: 2 changes
📝 phone: 3 changes
📝 hs_avatar_filemanager_key: 3 changes
📝 mobilephone: 1 changes
🔔 Event: association_change
Count: 841
📦 Object Type: deal
🔔 Event: property_change
Count: 94
Properties:
📝 dealstage: 11 changes
📝 hs_deal_stage_probability: 15 changes
📝 closedate: 16 changes
📝 hs_manual_forecast_category: 13 changes
📝 hs_next_step: 20 changes
📝 amount: 5 changes
📝 dealname: 7 changes
📝 hubspot_owner_id: 2 changes
📝 dealtype: 3 changes
📝 createdate: 2 changes
🔔 Event: creation
Count: 4
🔔 Event: association_change
Count: 13
📦 Object Type: company
🔔 Event: association_change
Count: 844
🔔 Event: property_change
Count: 202
Properties:
📝 country: 54 changes
📝 hubspot_owner_id: 47 changes
📝 domain: 57 changes
📝 name: 43 changes
📝 industry: 1 changes
🔔 Event: creation
Count: 57
INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16.
📊 Webhook Metrics for Config 533 (Connectd - 559)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 720
🔔 Event: property_change
Count: 3906
Properties:
📝 mobilephone: 15 changes
📝 lastname: 766 changes
📝 phone: 699 changes
📝 firstname: 773 changes
📝 email: 725 changes
📝 hubspot_owner_id: 757 changes
📝 jobtitle: 99 changes
📝 country: 72 changes
🔔 Event: association_change
Count: 864
📦 Object Type: deal
🔔 Event: property_change
Count: 3984
Properties:
📝 hs_deal_stage_probability: 1843 changes
📝 dealstage: 1316 changes
📝 closedate: 612 changes
📝 createdate: 7 changes
📝 hubspot_owner_id: 134 changes
📝 amount: 23 changes
📝 amount_in_home_currency: 30 changes
📝 dealname: 15 changes
📝 deal_currency_code: 3 changes
📝 pipeline: 1 changes
🔔 Event: association_change
Count: 780
🔔 Event: creation
Count: 648
📦 Object Type: company
🔔 Event: association_change
Count: 88
INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16.
📊 Webhook Metrics for Config 1006 (Dovetail Software - 1076)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 9
Properties:
📝 hs_manual_forecast_category: 2 changes
📝 hs_deal_stage_probability: 3 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
🔔 Event: creation
Count: 2
📦 Object Type: contact
🔔 Event: property_change
Count: 167
Properties:
📝 associatedcompanyid: 11 changes
📝 lastname: 11 changes
📝 phone: 11 changes
📝 hubspot_owner_id: 83 changes
📝 mobilephone: 9 changes
📝 firstname: 10 changes
📝 country: 13 changes
📝 email: 9 changes
📝 jobtitle: 10 changes
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 25
📦 Object Type: company
🔔 Event: association_change
Count: 27
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 14
Properties:
📝 hubspot_owner_id: 7 changes
📝 phone: 2 changes
📝 name: 1 changes
📝 country: 2 changes
📝 industry: 1 changes
📝 domain: 1 changes
INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16.
📊 Webhook Metrics for Config 154 (Learnerbly - 172)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 2
Properties:
📝 hubspot_owner_id: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 4
📦 Object Type: company
🔔 Event: association_change
Count: 4
📦 Object Type: deal
🔔 Event: property_change
Count: 3
Properties:
📝 amount: 1 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16.
📊 Webhook Metrics for Config 892 (Logiwa - 942)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 55
🔔 Event: property_change
Count: 322
Properties:
📝 jobtitle: 56 changes
📝 lastname: 57 changes
📝 firstname: 59 changes
📝 country: 4 changes
📝 email: 55 changes
📝 hubspot_owner_id: 38 changes
📝 associatedcompanyid: 47 changes
📝 phone: 6 changes
🔔 Event: association_change
Count: 96
📦 Object Type: company
🔔 Event: creation
Count: 16
🔔 Event: property_change
Count: 42
Properties:
📝 name: 21 changes
📝 domain: 16 changes
📝 hubspot_owner_id: 5 changes
🔔 Event: association_change
Count: 96
📦 Object Type: deal
🔔 Event: property_change
Count: 151
Properties:
📝 notes_last_updated: 139 changes
📝 closedate: 3 changes
📝 dealstage: 3 changes
📝 current_wms: 1 changes
📝 hs_deal_stage_probability: 3 changes
📝 amount: 1 changes
📝 hs_manual_forecast_category: 1 changes
INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16.
📊 Webhook Metrics for Config 882 (GoGlobal - 933)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 837
Properties:
📝 hs_next_step: 93 changes
📝 situation: 80 changes
📝 compelling_event: 76 changes
📝 decision_process: 72 changes
📝 decision_criteria: 76 changes
📝 problem: 50 changes
📝 impact: 50 changes
📝 amount: 73 changes
📝 amount_in_home_currency: 63 changes
📝 closedate: 19 changes
📝 dealstage: 39 changes
📝 description: 6 changes
📝 hs_deal_stage_probability: 51 changes
📝 dealname: 22 changes
📝 deal_currency_code: 24 changes
📝 hs_manual_forecast_category: 18 changes
📝 hiring_countries: 4 changes
📝 leadtype: 2 changes
📝 manager_forecast_notes: 10 changes
📝 competitors____please_specify: 1 changes
📝 closed_won_reason_jiminny_ai: 1 changes
📝 client_handover_notes_jiminny_ai: 1 changes
📝 lead_source_deal: 2 changes
📝 hubspot_owner_id: 4 changes
🔔 Event: association_change
Count: 48
📦 Object Type: company
🔔 Event: property_change
Count: 759
Properties:
📝 domain: 148 changes
📝 name: 140 changes
📝 country: 135 changes
📝 phone: 115 changes
📝 industry: 124 changes
📝 hubspot_owner_id: 97 changes
🔔 Event: creation
Count: 147
🔔 Event: association_change
Count: 1369
📦 Object Type: contact
🔔 Event: property_change
Count: 4203
Properties:
📝 lastname: 666 changes
📝 email: 600 changes
📝 hubspot_owner_id: 562 changes
📝 firstname: 608 changes
📝 jobtitle: 555 changes
📝 country: 585 changes
📝 associatedcompanyid: 585 changes
📝 phone: 31 changes
📝 mobilephone: 11 changes
🔔 Event: creation
Count: 600
🔔 Event: association_change
Count: 1349
INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16.
📊 Webhook Metrics for Config 797 (Kodex - 848)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 504
Properties:
📝 phone: 42 changes
📝 firstname: 48 changes
📝 email: 44 changes
📝 lastname: 50 changes
📝 associatedcompanyid: 138 changes
📝 jobtitle: 38 changes
📝 hubspot_owner_id: 103 changes
📝 mobilephone: 37 changes
📝 country: 4 changes
🔔 Event: creation
Count: 44
🔔 Event: association_change
Count: 623
📦 Object Type: company
🔔 Event: association_change
Count: 623
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 74
Properties:
📝 country: 8 changes
📝 name: 9 changes
📝 domain: 12 changes
📝 hubspot_owner_id: 30 changes
📝 industry: 8 changes
📝 phone: 7 changes
📦 Object Type: deal
🔔 Event: association_change
Count: 2
🔔 Event: property_change
Count: 4
Properties:
📝 amount: 1 changes
📝 hubspot_owner_id: 1 changes
📝 closedate: 1 changes
📝 dealname: 1 changes
INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16.
📊 Webhook Metrics for Config 636 (ProofPilot - 657)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 44
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 142
Properties:
📝 associatedcompanyid: 21 changes
📝 hubspot_owner_id: 24 changes
📝 jobtitle: 28 changes
📝 country: 14 changes
📝 lastname: 16 changes
📝 email: 14 changes
📝 phone: 8 changes
📝 firstname: 16 changes
📝 mobilephone: 1 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 8
Properties:
📝 dealtype: 1 changes
📝 amount: 2 changes
📝 closedate: 1 changes
📝 dealname: 2 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 44
INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16.
📊 Webhook Metrics for Config 1063 (Base.com - 1125)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 3464
🔔 Event: property_change
Count: 1320
Properties:
📝 name: 550 changes
📝 domain: 487 changes
📝 hubspot_owner_id: 157 changes
📝 phone: 35 changes
📝 country: 30 changes
📝 industry: 61 changes
🔔 Event: creation
Count: 604
📦 Object Type: contact
🔔 Event: property_change
Count: 8211
Properties:
📝 phone: 489 changes
📝 firstname: 1415 changes
📝 lastname: 1329 changes
📝 email: 1552 changes
📝 country: 400 changes
📝 associatedcompanyid: 1554 changes
📝 hubspot_owner_id: 428 changes
📝 jobtitle: 1026 changes
📝 mobilephone: 18 changes
🔔 Event: creation
Count: 1559
🔔 Event: association_change
Count: 3382
📦 Object Type: deal
🔔 Event: property_change
Count: 469
Properties:
📝 dealstage: 74 changes
📝 hs_deal_stage_probability: 112 changes
📝 closedate: 39 changes
📝 implementation_type: 9 changes
📝 deal_currency_code: 23 changes
📝 minimum_fee: 33 changes
📝 estimated_fulfilment_orders_per_month: 37 changes
📝 hubspot_owner_id: 8 changes
📝 dealtype: 2 changes
📝 amount: 26 changes
📝 monthly_orders_processed_by_base_with_normal_fee: 20 changes
📝 average_order_value: 18 changes
📝 estimated_orders_per_month: 9 changes
📝 dealname: 3 changes
📝 pipeline: 1 changes
📝 dor_principal_ia: 4 changes
📝 objecao_central_ia: 4 changes
📝 proximo_passo_ia: 4 changes
📝 resumo_da_reuniao_ia: 4 changes
📝 categoria_do_portfolio_ia: 3 changes
📝 perfil_comportamental_do_prospect_ia: 4 changes
📝 score_do_vendedor_ia: 4 changes
📝 temperatura_do_deal_ia: 4 changes
📝 nota_da_demo_ia: 4 changes
📝 analise_de_tecnicas_de_vendas_ia: 4 changes
📝 perfil_do_cliente_icp_ia: 4 changes
📝 erp: 8 changes
📝 hub_ia: 2 changes
📝 gap_de_funcionalidade_ia: 2 changes
🔔 Event: association_change
Count: 160
🔔 Event: creation
Count: 41
INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16.
📊 Webhook Metrics for Config 766 (Marsello - 781)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 22
🔔 Event: property_change
Count: 87
Properties:
📝 phone: 5 changes
📝 country: 11 changes
📝 domain: 13 changes
📝 industry: 8 changes
📝 name: 27 changes
📝 hubspot_owner_id: 23 changes
🔔 Event: association_change
Count: 203
📦 Object Type: contact
🔔 Event: property_change
Count: 337
Properties:
📝 jobtitle: 19 changes
📝 hubspot_owner_id: 35 changes
📝 email: 83 changes
📝 associatedcompanyid: 89 changes
📝 mobilephone: 16 changes
📝 phone: 14 changes
📝 country: 17 changes
📝 firstname: 33 changes
📝 lastname: 31 changes
🔔 Event: creation
Count: 24
🔔 Event: association_change
Count: 202
📦 Object Type: deal
🔔 Event: property_change
Count: 16
Properties:
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
📝 dealname: 2 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
📝 sites: 1 changes
📝 customers: 1 changes
📝 deal_icp: 1 changes
📝 integrations: 1 changes
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 3
INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16.
📊 Webhook Metrics for Config 803 (E3 - 854)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 134
🔔 Event: property_change
Count: 5
Properties:
📝 phone: 1 changes
📝 name: 2 changes
📝 domain: 1 changes
📝 hubspot_owner_id: 1 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 367
Properties:
📝 hubspot_owner_id: 64 changes
📝 jobtitle: 36 changes
📝 lastname: 52 changes
📝 firstname: 58 changes
📝 associatedcompanyid: 51 changes
📝 email: 60 changes
📝 phone: 42 changes
📝 mobilephone: 3 changes
📝 country: 1 changes
🔔 Event: creation
Count: 62
🔔 Event: association_change
Count: 124
📦 Object Type: deal
🔔 Event: property_change
Count: 104
Properties:
📝 dealstage: 23 changes
📝 hs_deal_stage_probability: 33 changes
📝 hs_manual_forecast_category: 26 changes
📝 amount: 10 changes
📝 closedate: 11 changes
📝 dealname: 1 changes
🔔 Event: association_change
Count: 42
🔔 Event: creation
Count: 13
INFO Looking for metrics: Config 944 (OneCrew - 1018), Date 2026-04-16.
📊 Webhook Metrics for Config 944 (OneCrew - 1018)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 46
🔔 Event: creation
Count: 10
🔔 Event: property_change
Count: 134
Properties:
📝 phone: 3 changes
📝 name: 10 changes
📝 country: 9 changes
📝 domain: 9 changes
📝 hubspot_owner_id: 101 changes
📝 industry: 2 changes
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: association_change
Count: 9
🔔 Event: property_change
Count: 3950
Properties:
📝 pain_points_and_deal_planning: 549 changes
📝 next_steps: 541 changes
📝 objections_and_blockers: 520 changes
📝 crm: 68 changes
📝 proposal_tool: 89 changes
📝 map_tool: 15 changes
📝 total_in_office: 221 changes
📝 business_impact_jiminny: 495 changes
📝 contact_information_jiminny: 501 changes
📝 state_region: 293 changes
📝 total_field_leads: 138 changes
📝 users__crew: 129 changes
📝 closedate: 3 changes
📝 dealstage: 7 changes
📝 hs_deal_stage_probability: 10 changes
📝 hs_manual_forecast_category: 5 changes
📝 accounting_software: 97 changes
📝 scheduling_tool: 14 changes
📝 city: 252 changes
📝 estimating_tool: 1 changes
📝 amount: 2 changes
📦 Object Type: contact
🔔 Event: creation
Count: 87
🔔 Event: property_change
Count: 727
Properties:
📝 lastname: 82 changes
📝 phone: 24 changes
📝 email: 84 changes
📝 firstname: 87 changes
📝 jobtitle: 81 changes
📝 hubspot_owner_id: 248 changes
📝 mobilephone: 82 changes
📝 country: 19 changes
📝 associatedcompanyid: 20 changes
🔔 Event: association_change
Count: 43
INFO Looking for metrics: Config 896 (Mintago - 946), Date 2026-04-16.
📊 Webhook Metrics for Config 896 (Mintago - 946)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 1668
🔔 Event: creation
Count: 217
🔔 Event: property_change
Count: 890
Properties:
📝 hubspot_owner_id: 50 changes
📝 industry: 150 changes
📝 phone: 120 changes
📝 domain: 212 changes
📝 name: 186 changes
📝 country: 172 changes
📦 Object Type: contact
🔔 Event: creation
Count: 984
🔔 Event: association_change
Count: 2039
🔔 Event: property_change
Count: 6980
Properties:
📝 phone: 824 changes
📝 hubspot_owner_id: 691 changes
📝 jobtitle: 990 changes
📝 email: 861 changes
📝 lastname: 1006 changes
📝 firstname: 986 changes
📝 associatedcompanyid: 820 changes
📝 country: 20 changes
📝 mobilephone: 782 changes
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 419
🔔 Event: property_change
Count: 153
Properties:
📝 hubspot_owner_id: 6 changes
📝 hs_deal_stage_probability: 41 changes
📝 dealname: 8 changes
📝 hs_next_step: 3 changes
📝 dealstage: 29 changes
📝 closedate: 24 changes
📝 hs_manual_forecast_category: 23 changes
📝 deal_currency_code: 6 changes
📝 amount_in_home_currency: 13 changes
INFO Looking for metrics: Config 908 (JPA Workspaces - 956), Date 2026-04-16.
📊 Webhook Metrics for Config 908 (JPA Workspaces - 956)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: property_change
Count: 14
Properties:
📝 dealstage: 4 changes
📝 hs_deal_stage_probability: 7 changes
📝 hs_manual_forecast_category: 3 changes
🔔 Event: association_change
Count: 9
📦 Object Type: company
🔔 Event: property_change
Count: 447
Properties:
📝 hubspot_owner_id: 446 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 10
📦 Object Type: contact
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 7
🔔 Event: property_change
Count: 721
Properties:
📝 lastname: 9 changes
📝 email: 12 changes
📝 firstname: 12 changes
📝 mobilephone: 4 changes
📝 hubspot_owner_id: 675 changes
📝 jobtitle: 2 changes
📝 phone: 4 changes
📝 associatedcompanyid: 2 changes
📝 country: 1 changes
INFO Looking for metrics: Config 171 (GaggleAMP Inc. - 189), Date 2026-04-16.
📊 Webhook Metrics for Config 171 (GaggleAMP Inc. - 189)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 175
Properties:
📝 hubspot_owner_id: 98 changes
📝 name: 14 changes
📝 country: 14 changes
📝 industry: 22 changes
📝 domain: 15 changes
📝 phone: 12 changes
🔔 Event: creation
Count: 15
🔔 Event: association_change
Count: 424
📦 Object Type: contact
🔔 Event: creation
Count: 212
🔔 Event: property_change
Count: 1862
Properties:
📝 hubspot_owner_id: 356 changes
📝 country: 231 changes
📝 lastname: 213 changes
📝 jobtitle: 214 changes
📝 email: 212 changes
📝 firstname: 212 changes
📝 associatedcompanyid: 212 changes
📝 mobilephone: 3 changes
📝 phone: 209 changes
🔔 Event: association_change
Count: 425
📦 Object Type: deal
🔔 Event: property_change
Count: 8
Properties:
📝 dealstage: 2 changes
📝 hs_deal_stage_probability: 2 changes
📝 closedate: 2 changes
📝 hs_manual_forecast_category: 2 changes
🔔 Event: association_change
Count: 1
INFO Looking for metrics: Config 880 (Immutable - 931), Date 2026-04-16.
📊 Webhook Metrics for Config 880 (Immutable - 931)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 4
Properties:
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
🔔 Event: association_change
Count: 21
📦 Object Type: contact
🔔 Event: association_change
Count: 1831
🔔 Event: creation
Count: 736
🔔 Event: property_change
Count: 3020
Properties:
📝 lastname: 536 changes
📝 hubspot_owner_id: 169 changes
📝 jobtitle: 723 changes
📝 country: 155 changes
📝 firstname: 544 changes
📝 email: 448 changes
📝 associatedcompanyid: 441 changes
📝 phone: 2 changes
📝 mobilephone: 2 changes
📦 Object Type: company
🔔 Event: association_change
Count: 1818
🔔 Event: property_change
Count: 308
Properties:
📝 hubspot_owner_id: 8 changes
📝 name: 139 changes
📝 domain: 158 changes
📝 country: 1 changes
📝 industry: 1 changes
📝 phone: 1 changes
🔔 Event: creation
Count: 158
INFO Looking for metrics: Config 877 (GroWrk Remote - 927), Date 2026-04-16.
📊 Webhook Metrics for Config 877 (GroWrk Remote - 927)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 25
Properties:
📝 industry: 5 changes
📝 name: 5 changes
📝 country: 4 changes
📝 domain: 4 changes
📝 hubspot_owner_id: 6 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 44
🔔 Event: creation
Count: 5
📦 Object Type: deal
🔔 Event: property_change
Count: 82
Properties:
📝 hs_deal_stage_probability: 19 changes
📝 hubspot_owner_id: 5 changes
📝 company_name: 8 changes
📝 amount: 12 changes
📝 dealstage: 8 changes
📝 closedate: 9 changes
📝 deal_currency_code: 9 changes
📝 dealname: 4 changes
📝 agreement_model: 4 changes
📝 is_the_prospect_looking_at_competitors_: 2 changes
📝 is_the_prospect_using_a_competitor_: 2 changes
🔔 Event: association_change
Count: 58
🔔 Event: creation
Count: 11
📦 Object Type: contact
🔔 Event: association_change
Count: 58
🔔 Event: property_change
Count: 49
Properties:
📝 country: 3 changes
📝 email: 9 changes
📝 lastname: 8 changes
📝 associatedcompanyid: 10 changes
📝 firstname: 6 changes
📝 hubspot_owner_id: 9 changes
📝 jobtitle: 3 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 10
INFO Looking for metrics: Config 928 (Portless - 995), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"📝\u0000 email: 438 changes\n 📝\u0000 associatedcompanyid: 405 changes\n 📝\u0000 jobtitle: 760 changes\n 📝\u0000 firstname: 423 changes\n 📝\u0000 lastname: 320 changes\n 📝\u0000 hubspot_owner_id: 66 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 phone: 3 changes\n 📝\u0000 hs_avatar_filemanager_key: 3 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 841\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 94\n Properties:\n 📝\u0000 dealstage: 11 changes\n 📝\u0000 hs_deal_stage_probability: 15 changes\n 📝\u0000 closedate: 16 changes\n 📝\u0000 hs_manual_forecast_category: 13 changes\n 📝\u0000 hs_next_step: 20 changes\n 📝\u0000 amount: 5 changes\n 📝\u0000 dealname: 7 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 createdate: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 🔔\u0000 Event: association_change\n Count: 13\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 844\n\n 🔔\u0000 Event: property_change\n Count: 202\n Properties:\n 📝\u0000 country: 54 changes\n 📝\u0000 hubspot_owner_id: 47 changes\n 📝\u0000 domain: 57 changes\n 📝\u0000 name: 43 changes\n 📝\u0000 industry: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 57\n\n\n INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 533 (Connectd - 559)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 720\n\n 🔔\u0000 Event: property_change\n Count: 3906\n Properties:\n 📝\u0000 mobilephone: 15 changes\n 📝\u0000 lastname: 766 changes\n 📝\u0000 phone: 699 changes\n 📝\u0000 firstname: 773 changes\n 📝\u0000 email: 725 changes\n 📝\u0000 hubspot_owner_id: 757 changes\n 📝\u0000 jobtitle: 99 changes\n 📝\u0000 country: 72 changes\n\n 🔔\u0000 Event: association_change\n Count: 864\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3984\n Properties:\n 📝\u0000 hs_deal_stage_probability: 1843 changes\n 📝\u0000 dealstage: 1316 changes\n 📝\u0000 closedate: 612 changes\n 📝\u0000 createdate: 7 changes\n 📝\u0000 hubspot_owner_id: 134 changes\n 📝\u0000 amount: 23 changes\n 📝\u0000 amount_in_home_currency: 30 changes\n 📝\u0000 dealname: 15 changes\n 📝\u0000 deal_currency_code: 3 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 780\n\n 🔔\u0000 Event: creation\n Count: 648\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 88\n\n\n INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1006 (Dovetail Software - 1076)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 9\n Properties:\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 167\n Properties:\n 📝\u0000 associatedcompanyid: 11 changes\n 📝\u0000 lastname: 11 changes\n 📝\u0000 phone: 11 changes\n 📝\u0000 hubspot_owner_id: 83 changes\n 📝\u0000 mobilephone: 9 changes\n 📝\u0000 firstname: 10 changes\n 📝\u0000 country: 13 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 jobtitle: 10 changes\n\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 25\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 domain: 1 changes\n\n\n INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 154 (Learnerbly - 172)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n\n INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 892 (Logiwa - 942)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 55\n\n 🔔\u0000 Event: property_change\n Count: 322\n Properties:\n 📝\u0000 jobtitle: 56 changes\n 📝\u0000 lastname: 57 changes\n 📝\u0000 firstname: 59 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 email: 55 changes\n 📝\u0000 hubspot_owner_id: 38 changes\n 📝\u0000 associatedcompanyid: 47 changes\n 📝\u0000 phone: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 42\n Properties:\n 📝\u0000 name: 21 changes\n 📝\u0000 domain: 16 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 151\n Properties:\n 📝\u0000 notes_last_updated: 139 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 current_wms: 1 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hs_manual_forecast_category: 1 changes\n\n\n INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 882 (GoGlobal - 933)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 837\n Properties:\n 📝\u0000 hs_next_step: 93 changes\n 📝\u0000 situation: 80 changes\n 📝\u0000 compelling_event: 76 changes\n 📝\u0000 decision_process: 72 changes\n 📝\u0000 decision_criteria: 76 changes\n 📝\u0000 problem: 50 changes\n 📝\u0000 impact: 50 changes\n 📝\u0000 amount: 73 changes\n 📝\u0000 amount_in_home_currency: 63 changes\n 📝\u0000 closedate: 19 changes\n 📝\u0000 dealstage: 39 changes\n 📝\u0000 description: 6 changes\n 📝\u0000 hs_deal_stage_probability: 51 changes\n 📝\u0000 dealname: 22 changes\n 📝\u0000 deal_currency_code: 24 changes\n 📝\u0000 hs_manual_forecast_category: 18 changes\n 📝\u0000 hiring_countries: 4 changes\n 📝\u0000 leadtype: 2 changes\n 📝\u0000 manager_forecast_notes: 10 changes\n 📝\u0000 competitors____please_specify: 1 changes\n 📝\u0000 closed_won_reason_jiminny_ai: 1 changes\n 📝\u0000 client_handover_notes_jiminny_ai: 1 changes\n 📝\u0000 lead_source_deal: 2 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n\n 🔔\u0000 Event: association_change\n Count: 48\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 759\n Properties:\n 📝\u0000 domain: 148 changes\n 📝\u0000 name: 140 changes\n 📝\u0000 country: 135 changes\n 📝\u0000 phone: 115 changes\n 📝\u0000 industry: 124 changes\n 📝\u0000 hubspot_owner_id: 97 changes\n\n 🔔\u0000 Event: creation\n Count: 147\n\n 🔔\u0000 Event: association_change\n Count: 1369\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 4203\n Properties:\n 📝\u0000 lastname: 666 changes\n 📝\u0000 email: 600 changes\n 📝\u0000 hubspot_owner_id: 562 changes\n 📝\u0000 firstname: 608 changes\n 📝\u0000 jobtitle: 555 changes\n 📝\u0000 country: 585 changes\n 📝\u0000 associatedcompanyid: 585 changes\n 📝\u0000 phone: 31 changes\n 📝\u0000 mobilephone: 11 changes\n\n 🔔\u0000 Event: creation\n Count: 600\n\n 🔔\u0000 Event: association_change\n Count: 1349\n\n\n INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 797 (Kodex - 848)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 504\n Properties:\n 📝\u0000 phone: 42 changes\n 📝\u0000 firstname: 48 changes\n 📝\u0000 email: 44 changes\n 📝\u0000 lastname: 50 changes\n 📝\u0000 associatedcompanyid: 138 changes\n 📝\u0000 jobtitle: 38 changes\n 📝\u0000 hubspot_owner_id: 103 changes\n 📝\u0000 mobilephone: 37 changes\n 📝\u0000 country: 4 changes\n\n 🔔\u0000 Event: creation\n Count: 44\n\n 🔔\u0000 Event: association_change\n Count: 623\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 623\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 74\n Properties:\n 📝\u0000 country: 8 changes\n 📝\u0000 name: 9 changes\n 📝\u0000 domain: 12 changes\n 📝\u0000 hubspot_owner_id: 30 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 phone: 7 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 4\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 1 changes\n\n\n INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 636 (ProofPilot - 657)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 44\n\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 142\n Properties:\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 hubspot_owner_id: 24 changes\n 📝\u0000 jobtitle: 28 changes\n 📝\u0000 country: 14 changes\n 📝\u0000 lastname: 16 changes\n 📝\u0000 email: 14 changes\n 📝\u0000 phone: 8 changes\n 📝\u0000 firstname: 16 changes\n 📝\u0000 mobilephone: 1 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 dealtype: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 44\n\n\n INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1063 (Base.com - 1125)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 3464\n\n 🔔\u0000 Event: property_change\n Count: 1320\n Properties:\n 📝\u0000 name: 550 changes\n 📝\u0000 domain: 487 changes\n 📝\u0000 hubspot_owner_id: 157 changes\n 📝\u0000 phone: 35 changes\n 📝\u0000 country: 30 changes\n 📝\u0000 industry: 61 changes\n\n 🔔\u0000 Event: creation\n Count: 604\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 8211\n Properties:\n 📝\u0000 phone: 489 changes\n 📝\u0000 firstname: 1415 changes\n 📝\u0000 lastname: 1329 changes\n 📝\u0000 email: 1552 changes\n 📝\u0000 country: 400 changes\n 📝\u0000 associatedcompanyid: 1554 changes\n 📝\u0000 hubspot_owner_id: 428 changes\n 📝\u0000 jobtitle: 1026 changes\n 📝\u0000 mobilephone: 18 changes\n\n 🔔\u0000 Event: creation\n Count: 1559\n\n 🔔\u0000 Event: association_change\n Count: 3382\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 469\n Properties:\n 📝\u0000 dealstage: 74 changes\n 📝\u0000 hs_deal_stage_probability: 112 changes\n 📝\u0000 closedate: 39 changes\n 📝\u0000 implementation_type: 9 changes\n 📝\u0000 deal_currency_code: 23 changes\n 📝\u0000 minimum_fee: 33 changes\n 📝\u0000 estimated_fulfilment_orders_per_month: 37 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 dealtype: 2 changes\n 📝\u0000 amount: 26 changes\n 📝\u0000 monthly_orders_processed_by_base_with_normal_fee: 20 changes\n 📝\u0000 average_order_value: 18 changes\n 📝\u0000 estimated_orders_per_month: 9 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 dor_principal_ia: 4 changes\n 📝\u0000 objecao_central_ia: 4 changes\n 📝\u0000 proximo_passo_ia: 4 changes\n 📝\u0000 resumo_da_reuniao_ia: 4 changes\n 📝\u0000 categoria_do_portfolio_ia: 3 changes\n 📝\u0000 perfil_comportamental_do_prospect_ia: 4 changes\n 📝\u0000 score_do_vendedor_ia: 4 changes\n 📝\u0000 temperatura_do_deal_ia: 4 changes\n 📝\u0000 nota_da_demo_ia: 4 changes\n 📝\u0000 analise_de_tecnicas_de_vendas_ia: 4 changes\n 📝\u0000 perfil_do_cliente_icp_ia: 4 changes\n 📝\u0000 erp: 8 changes\n 📝\u0000 hub_ia: 2 changes\n 📝\u0000 gap_de_funcionalidade_ia: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 160\n\n 🔔\u0000 Event: creation\n Count: 41\n\n\n INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 766 (Marsello - 781)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 22\n\n 🔔\u0000 Event: property_change\n Count: 87\n Properties:\n 📝\u0000 phone: 5 changes\n 📝\u0000 country: 11 changes\n 📝\u0000 domain: 13 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 name: 27 changes\n 📝\u0000 hubspot_owner_id: 23 changes\n\n 🔔\u0000 Event: association_change\n Count: 203\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 337\n Properties:\n 📝\u0000 jobtitle: 19 changes\n 📝\u0000 hubspot_owner_id: 35 changes\n 📝\u0000 email: 83 changes\n 📝\u0000 associatedcompanyid: 89 changes\n 📝\u0000 mobilephone: 16 changes\n 📝\u0000 phone: 14 changes\n 📝\u0000 country: 17 changes\n 📝\u0000 firstname: 33 changes\n 📝\u0000 lastname: 31 changes\n\n 🔔\u0000 Event: creation\n Count: 24\n\n 🔔\u0000 Event: association_change\n Count: 202\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 16\n Properties:\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 sites: 1 changes\n 📝\u0000 customers: 1 changes\n 📝\u0000 deal_icp: 1 changes\n 📝\u0000 integrations: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n\n INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 803 (E3 - 854)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 134\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 phone: 1 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 domain: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 367\n Properties:\n 📝\u0000 hubspot_owner_id: 64 changes\n 📝\u0000 jobtitle: 36 changes\n 📝\u0000 lastname: 52 changes\n 📝\u0000 firstname: 58 changes\n 📝\u0000 associatedcompanyid: 51 changes\n 📝\u0000 email: 60 changes\n 📝\u0000 phone: 42 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 62\n\n 🔔\u0000 Event: association_change\n Count: 124\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 104\n Properties:\n 📝\u0000 dealstage: 23 changes\n 📝\u0000 hs_deal_stage_probability: 33 changes\n 📝\u0000 hs_manual_forecast_category: 26 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 closedate: 11 changes\n 📝\u0000 dealname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 42\n\n 🔔\u0000 Event: creation\n Count: 13\n\n\n INFO Looking for metrics: Config 944 (OneCrew - 1018), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 944 (OneCrew - 1018)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 46\n\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: property_change\n Count: 134\n Properties:\n 📝\u0000 phone: 3 changes\n 📝\u0000 name: 10 changes\n 📝\u0000 country: 9 changes\n 📝\u0000 domain: 9 changes\n 📝\u0000 hubspot_owner_id: 101 changes\n 📝\u0000 industry: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 🔔\u0000 Event: property_change\n Count: 3950\n Properties:\n 📝\u0000 pain_points_and_deal_planning: 549 changes\n 📝\u0000 next_steps: 541 changes\n 📝\u0000 objections_and_blockers: 520 changes\n 📝\u0000 crm: 68 changes\n 📝\u0000 proposal_tool: 89 changes\n 📝\u0000 map_tool: 15 changes\n 📝\u0000 total_in_office: 221 changes\n 📝\u0000 business_impact_jiminny: 495 changes\n 📝\u0000 contact_information_jiminny: 501 changes\n 📝\u0000 state_region: 293 changes\n 📝\u0000 total_field_leads: 138 changes\n 📝\u0000 users__crew: 129 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 hs_deal_stage_probability: 10 changes\n 📝\u0000 hs_manual_forecast_category: 5 changes\n 📝\u0000 accounting_software: 97 changes\n 📝\u0000 scheduling_tool: 14 changes\n 📝\u0000 city: 252 changes\n 📝\u0000 estimating_tool: 1 changes\n 📝\u0000 amount: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 87\n\n 🔔\u0000 Event: property_change\n Count: 727\n Properties:\n 📝\u0000 lastname: 82 changes\n 📝\u0000 phone: 24 changes\n 📝\u0000 email: 84 changes\n 📝\u0000 firstname: 87 changes\n 📝\u0000 jobtitle: 81 changes\n 📝\u0000 hubspot_owner_id: 248 changes\n 📝\u0000 mobilephone: 82 changes\n 📝\u0000 country: 19 changes\n 📝\u0000 associatedcompanyid: 20 changes\n\n 🔔\u0000 Event: association_change\n Count: 43\n\n\n INFO Looking for metrics: Config 896 (Mintago - 946), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 896 (Mintago - 946)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 1668\n\n 🔔\u0000 Event: creation\n Count: 217\n\n 🔔\u0000 Event: property_change\n Count: 890\n Properties:\n 📝\u0000 hubspot_owner_id: 50 changes\n 📝\u0000 industry: 150 changes\n 📝\u0000 phone: 120 changes\n 📝\u0000 domain: 212 changes\n 📝\u0000 name: 186 changes\n 📝\u0000 country: 172 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 984\n\n 🔔\u0000 Event: association_change\n Count: 2039\n\n 🔔\u0000 Event: property_change\n Count: 6980\n Properties:\n 📝\u0000 phone: 824 changes\n 📝\u0000 hubspot_owner_id: 691 changes\n 📝\u0000 jobtitle: 990 changes\n 📝\u0000 email: 861 changes\n 📝\u0000 lastname: 1006 changes\n 📝\u0000 firstname: 986 changes\n 📝\u0000 associatedcompanyid: 820 changes\n 📝\u0000 country: 20 changes\n 📝\u0000 mobilephone: 782 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 419\n\n 🔔\u0000 Event: property_change\n Count: 153\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 hs_deal_stage_probability: 41 changes\n 📝\u0000 dealname: 8 changes\n 📝\u0000 hs_next_step: 3 changes\n 📝\u0000 dealstage: 29 changes\n 📝\u0000 closedate: 24 changes\n 📝\u0000 hs_manual_forecast_category: 23 changes\n 📝\u0000 deal_currency_code: 6 changes\n 📝\u0000 amount_in_home_currency: 13 changes\n\n\n INFO Looking for metrics: Config 908 (JPA Workspaces - 956), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 908 (JPA Workspaces - 956)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 dealstage: 4 changes\n 📝\u0000 hs_deal_stage_probability: 7 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 447\n Properties:\n 📝\u0000 hubspot_owner_id: 446 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 7\n\n 🔔\u0000 Event: property_change\n Count: 721\n Properties:\n 📝\u0000 lastname: 9 changes\n 📝\u0000 email: 12 changes\n 📝\u0000 firstname: 12 changes\n 📝\u0000 mobilephone: 4 changes\n 📝\u0000 hubspot_owner_id: 675 changes\n 📝\u0000 jobtitle: 2 changes\n 📝\u0000 phone: 4 changes\n 📝\u0000 associatedcompanyid: 2 changes\n 📝\u0000 country: 1 changes\n\n\n INFO Looking for metrics: Config 171 (GaggleAMP Inc. - 189), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 171 (GaggleAMP Inc. - 189)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 175\n Properties:\n 📝\u0000 hubspot_owner_id: 98 changes\n 📝\u0000 name: 14 changes\n 📝\u0000 country: 14 changes\n 📝\u0000 industry: 22 changes\n 📝\u0000 domain: 15 changes\n 📝\u0000 phone: 12 changes\n\n 🔔\u0000 Event: creation\n Count: 15\n\n 🔔\u0000 Event: association_change\n Count: 424\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 212\n\n 🔔\u0000 Event: property_change\n Count: 1862\n Properties:\n 📝\u0000 hubspot_owner_id: 356 changes\n 📝\u0000 country: 231 changes\n 📝\u0000 lastname: 213 changes\n 📝\u0000 jobtitle: 214 changes\n 📝\u0000 email: 212 changes\n 📝\u0000 firstname: 212 changes\n 📝\u0000 associatedcompanyid: 212 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 phone: 209 changes\n\n 🔔\u0000 Event: association_change\n Count: 425\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 dealstage: 2 changes\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 closedate: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 1\n\n\n INFO Looking for metrics: Config 880 (Immutable - 931), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 880 (Immutable - 931)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 4\n Properties:\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 21\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 1831\n\n 🔔\u0000 Event: creation\n Count: 736\n\n 🔔\u0000 Event: property_change\n Count: 3020\n Properties:\n 📝\u0000 lastname: 536 changes\n 📝\u0000 hubspot_owner_id: 169 changes\n 📝\u0000 jobtitle: 723 changes\n 📝\u0000 country: 155 changes\n 📝\u0000 firstname: 544 changes\n 📝\u0000 email: 448 changes\n 📝\u0000 associatedcompanyid: 441 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 mobilephone: 2 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 1818\n\n 🔔\u0000 Event: property_change\n Count: 308\n Properties:\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 name: 139 changes\n 📝\u0000 domain: 158 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 158\n\n\n INFO Looking for metrics: Config 877 (GroWrk Remote - 927), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 877 (GroWrk Remote - 927)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 25\n Properties:\n 📝\u0000 industry: 5 changes\n 📝\u0000 name: 5 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 domain: 4 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 44\n\n 🔔\u0000 Event: creation\n Count: 5\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 82\n Properties:\n 📝\u0000 hs_deal_stage_probability: 19 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 company_name: 8 changes\n 📝\u0000 amount: 12 changes\n 📝\u0000 dealstage: 8 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 deal_currency_code: 9 changes\n 📝\u0000 dealname: 4 changes\n 📝\u0000 agreement_model: 4 changes\n 📝\u0000 is_the_prospect_looking_at_competitors_: 2 changes\n 📝\u0000 is_the_prospect_using_a_competitor_: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 58\n\n 🔔\u0000 Event: creation\n Count: 11\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 58\n\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 country: 3 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 lastname: 8 changes\n 📝\u0000 associatedcompanyid: 10 changes\n 📝\u0000 firstname: 6 changes\n 📝\u0000 hubspot_owner_id: 9 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 10\n\n\n INFO Looking for metrics: Config 928 (Portless - 995), Date 2026-04-16.","depth":4,"value":"📝\u0000 email: 438 changes\n 📝\u0000 associatedcompanyid: 405 changes\n 📝\u0000 jobtitle: 760 changes\n 📝\u0000 firstname: 423 changes\n 📝\u0000 lastname: 320 changes\n 📝\u0000 hubspot_owner_id: 66 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 phone: 3 changes\n 📝\u0000 hs_avatar_filemanager_key: 3 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 841\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 94\n Properties:\n 📝\u0000 dealstage: 11 changes\n 📝\u0000 hs_deal_stage_probability: 15 changes\n 📝\u0000 closedate: 16 changes\n 📝\u0000 hs_manual_forecast_category: 13 changes\n 📝\u0000 hs_next_step: 20 changes\n 📝\u0000 amount: 5 changes\n 📝\u0000 dealname: 7 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 createdate: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 🔔\u0000 Event: association_change\n Count: 13\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 844\n\n 🔔\u0000 Event: property_change\n Count: 202\n Properties:\n 📝\u0000 country: 54 changes\n 📝\u0000 hubspot_owner_id: 47 changes\n 📝\u0000 domain: 57 changes\n 📝\u0000 name: 43 changes\n 📝\u0000 industry: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 57\n\n\n INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 533 (Connectd - 559)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 720\n\n 🔔\u0000 Event: property_change\n Count: 3906\n Properties:\n 📝\u0000 mobilephone: 15 changes\n 📝\u0000 lastname: 766 changes\n 📝\u0000 phone: 699 changes\n 📝\u0000 firstname: 773 changes\n 📝\u0000 email: 725 changes\n 📝\u0000 hubspot_owner_id: 757 changes\n 📝\u0000 jobtitle: 99 changes\n 📝\u0000 country: 72 changes\n\n 🔔\u0000 Event: association_change\n Count: 864\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3984\n Properties:\n 📝\u0000 hs_deal_stage_probability: 1843 changes\n 📝\u0000 dealstage: 1316 changes\n 📝\u0000 closedate: 612 changes\n 📝\u0000 createdate: 7 changes\n 📝\u0000 hubspot_owner_id: 134 changes\n 📝\u0000 amount: 23 changes\n 📝\u0000 amount_in_home_currency: 30 changes\n 📝\u0000 dealname: 15 changes\n 📝\u0000 deal_currency_code: 3 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 780\n\n 🔔\u0000 Event: creation\n Count: 648\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 88\n\n\n INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1006 (Dovetail Software - 1076)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 9\n Properties:\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 167\n Properties:\n 📝\u0000 associatedcompanyid: 11 changes\n 📝\u0000 lastname: 11 changes\n 📝\u0000 phone: 11 changes\n 📝\u0000 hubspot_owner_id: 83 changes\n 📝\u0000 mobilephone: 9 changes\n 📝\u0000 firstname: 10 changes\n 📝\u0000 country: 13 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 jobtitle: 10 changes\n\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 25\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 domain: 1 changes\n\n\n INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 154 (Learnerbly - 172)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n\n INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 892 (Logiwa - 942)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 55\n\n 🔔\u0000 Event: property_change\n Count: 322\n Properties:\n 📝\u0000 jobtitle: 56 changes\n 📝\u0000 lastname: 57 changes\n 📝\u0000 firstname: 59 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 email: 55 changes\n 📝\u0000 hubspot_owner_id: 38 changes\n 📝\u0000 associatedcompanyid: 47 changes\n 📝\u0000 phone: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 42\n Properties:\n 📝\u0000 name: 21 changes\n 📝\u0000 domain: 16 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 151\n Properties:\n 📝\u0000 notes_last_updated: 139 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 current_wms: 1 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hs_manual_forecast_category: 1 changes\n\n\n INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 882 (GoGlobal - 933)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 837\n Properties:\n 📝\u0000 hs_next_step: 93 changes\n 📝\u0000 situation: 80 changes\n 📝\u0000 compelling_event: 76 changes\n 📝\u0000 decision_process: 72 changes\n 📝\u0000 decision_criteria: 76 changes\n 📝\u0000 problem: 50 changes\n 📝\u0000 impact: 50 changes\n 📝\u0000 amount: 73 changes\n 📝\u0000 amount_in_home_currency: 63 changes\n 📝\u0000 closedate: 19 changes\n 📝\u0000 dealstage: 39 changes\n 📝\u0000 description: 6 changes\n 📝\u0000 hs_deal_stage_probability: 51 changes\n 📝\u0000 dealname: 22 changes\n 📝\u0000 deal_currency_code: 24 changes\n 📝\u0000 hs_manual_forecast_category: 18 changes\n 📝\u0000 hiring_countries: 4 changes\n 📝\u0000 leadtype: 2 changes\n 📝\u0000 manager_forecast_notes: 10 changes\n 📝\u0000 competitors____please_specify: 1 changes\n 📝\u0000 closed_won_reason_jiminny_ai: 1 changes\n 📝\u0000 client_handover_notes_jiminny_ai: 1 changes\n 📝\u0000 lead_source_deal: 2 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n\n 🔔\u0000 Event: association_change\n Count: 48\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 759\n Properties:\n 📝\u0000 domain: 148 changes\n 📝\u0000 name: 140 changes\n 📝\u0000 country: 135 changes\n 📝\u0000 phone: 115 changes\n 📝\u0000 industry: 124 changes\n 📝\u0000 hubspot_owner_id: 97 changes\n\n 🔔\u0000 Event: creation\n Count: 147\n\n 🔔\u0000 Event: association_change\n Count: 1369\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 4203\n Properties:\n 📝\u0000 lastname: 666 changes\n 📝\u0000 email: 600 changes\n 📝\u0000 hubspot_owner_id: 562 changes\n 📝\u0000 firstname: 608 changes\n 📝\u0000 jobtitle: 555 changes\n 📝\u0000 country: 585 changes\n 📝\u0000 associatedcompanyid: 585 changes\n 📝\u0000 phone: 31 changes\n 📝\u0000 mobilephone: 11 changes\n\n 🔔\u0000 Event: creation\n Count: 600\n\n 🔔\u0000 Event: association_change\n Count: 1349\n\n\n INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 797 (Kodex - 848)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 504\n Properties:\n 📝\u0000 phone: 42 changes\n 📝\u0000 firstname: 48 changes\n 📝\u0000 email: 44 changes\n 📝\u0000 lastname: 50 changes\n 📝\u0000 associatedcompanyid: 138 changes\n 📝\u0000 jobtitle: 38 changes\n 📝\u0000 hubspot_owner_id: 103 changes\n 📝\u0000 mobilephone: 37 changes\n 📝\u0000 country: 4 changes\n\n 🔔\u0000 Event: creation\n Count: 44\n\n 🔔\u0000 Event: association_change\n Count: 623\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 623\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 74\n Properties:\n 📝\u0000 country: 8 changes\n 📝\u0000 name: 9 changes\n 📝\u0000 domain: 12 changes\n 📝\u0000 hubspot_owner_id: 30 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 phone: 7 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 4\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 1 changes\n\n\n INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 636 (ProofPilot - 657)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 44\n\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 142\n Properties:\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 hubspot_owner_id: 24 changes\n 📝\u0000 jobtitle: 28 changes\n 📝\u0000 country: 14 changes\n 📝\u0000 lastname: 16 changes\n 📝\u0000 email: 14 changes\n 📝\u0000 phone: 8 changes\n 📝\u0000 firstname: 16 changes\n 📝\u0000 mobilephone: 1 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 dealtype: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 44\n\n\n INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1063 (Base.com - 1125)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 3464\n\n 🔔\u0000 Event: property_change\n Count: 1320\n Properties:\n 📝\u0000 name: 550 changes\n 📝\u0000 domain: 487 changes\n 📝\u0000 hubspot_owner_id: 157 changes\n 📝\u0000 phone: 35 changes\n 📝\u0000 country: 30 changes\n 📝\u0000 industry: 61 changes\n\n 🔔\u0000 Event: creation\n Count: 604\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 8211\n Properties:\n 📝\u0000 phone: 489 changes\n 📝\u0000 firstname: 1415 changes\n 📝\u0000 lastname: 1329 changes\n 📝\u0000 email: 1552 changes\n 📝\u0000 country: 400 changes\n 📝\u0000 associatedcompanyid: 1554 changes\n 📝\u0000 hubspot_owner_id: 428 changes\n 📝\u0000 jobtitle: 1026 changes\n 📝\u0000 mobilephone: 18 changes\n\n 🔔\u0000 Event: creation\n Count: 1559\n\n 🔔\u0000 Event: association_change\n Count: 3382\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 469\n Properties:\n 📝\u0000 dealstage: 74 changes\n 📝\u0000 hs_deal_stage_probability: 112 changes\n 📝\u0000 closedate: 39 changes\n 📝\u0000 implementation_type: 9 changes\n 📝\u0000 deal_currency_code: 23 changes\n 📝\u0000 minimum_fee: 33 changes\n 📝\u0000 estimated_fulfilment_orders_per_month: 37 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 dealtype: 2 changes\n 📝\u0000 amount: 26 changes\n 📝\u0000 monthly_orders_processed_by_base_with_normal_fee: 20 changes\n 📝\u0000 average_order_value: 18 changes\n 📝\u0000 estimated_orders_per_month: 9 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 dor_principal_ia: 4 changes\n 📝\u0000 objecao_central_ia: 4 changes\n 📝\u0000 proximo_passo_ia: 4 changes\n 📝\u0000 resumo_da_reuniao_ia: 4 changes\n 📝\u0000 categoria_do_portfolio_ia: 3 changes\n 📝\u0000 perfil_comportamental_do_prospect_ia: 4 changes\n 📝\u0000 score_do_vendedor_ia: 4 changes\n 📝\u0000 temperatura_do_deal_ia: 4 changes\n 📝\u0000 nota_da_demo_ia: 4 changes\n 📝\u0000 analise_de_tecnicas_de_vendas_ia: 4 changes\n 📝\u0000 perfil_do_cliente_icp_ia: 4 changes\n 📝\u0000 erp: 8 changes\n 📝\u0000 hub_ia: 2 changes\n 📝\u0000 gap_de_funcionalidade_ia: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 160\n\n 🔔\u0000 Event: creation\n Count: 41\n\n\n INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 766 (Marsello - 781)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 22\n\n 🔔\u0000 Event: property_change\n Count: 87\n Properties:\n 📝\u0000 phone: 5 changes\n 📝\u0000 country: 11 changes\n 📝\u0000 domain: 13 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 name: 27 changes\n 📝\u0000 hubspot_owner_id: 23 changes\n\n 🔔\u0000 Event: association_change\n Count: 203\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 337\n Properties:\n 📝\u0000 jobtitle: 19 changes\n 📝\u0000 hubspot_owner_id: 35 changes\n 📝\u0000 email: 83 changes\n 📝\u0000 associatedcompanyid: 89 changes\n 📝\u0000 mobilephone: 16 changes\n 📝\u0000 phone: 14 changes\n 📝\u0000 country: 17 changes\n 📝\u0000 firstname: 33 changes\n 📝\u0000 lastname: 31 changes\n\n 🔔\u0000 Event: creation\n Count: 24\n\n 🔔\u0000 Event: association_change\n Count: 202\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 16\n Properties:\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 sites: 1 changes\n 📝\u0000 customers: 1 changes\n 📝\u0000 deal_icp: 1 changes\n 📝\u0000 integrations: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n\n INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 803 (E3 - 854)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 134\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 phone: 1 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 domain: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 367\n Properties:\n 📝\u0000 hubspot_owner_id: 64 changes\n 📝\u0000 jobtitle: 36 changes\n 📝\u0000 lastname: 52 changes\n 📝\u0000 firstname: 58 changes\n 📝\u0000 associatedcompanyid: 51 changes\n 📝\u0000 email: 60 changes\n 📝\u0000 phone: 42 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 62\n\n 🔔\u0000 Event: association_change\n Count: 124\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 104\n Properties:\n 📝\u0000 dealstage: 23 changes\n 📝\u0000 hs_deal_stage_probability: 33 changes\n 📝\u0000 hs_manual_forecast_category: 26 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 closedate: 11 changes\n 📝\u0000 dealname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 42\n\n 🔔\u0000 Event: creation\n Count: 13\n\n\n INFO Looking for metrics: Config 944 (OneCrew - 1018), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 944 (OneCrew - 1018)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 46\n\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: property_change\n Count: 134\n Properties:\n 📝\u0000 phone: 3 changes\n 📝\u0000 name: 10 changes\n 📝\u0000 country: 9 changes\n 📝\u0000 domain: 9 changes\n 📝\u0000 hubspot_owner_id: 101 changes\n 📝\u0000 industry: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 🔔\u0000 Event: property_change\n Count: 3950\n Properties:\n 📝\u0000 pain_points_and_deal_planning: 549 changes\n 📝\u0000 next_steps: 541 changes\n 📝\u0000 objections_and_blockers: 520 changes\n 📝\u0000 crm: 68 changes\n 📝\u0000 proposal_tool: 89 changes\n 📝\u0000 map_tool: 15 changes\n 📝\u0000 total_in_office: 221 changes\n 📝\u0000 business_impact_jiminny: 495 changes\n 📝\u0000 contact_information_jiminny: 501 changes\n 📝\u0000 state_region: 293 changes\n 📝\u0000 total_field_leads: 138 changes\n 📝\u0000 users__crew: 129 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 hs_deal_stage_probability: 10 changes\n 📝\u0000 hs_manual_forecast_category: 5 changes\n 📝\u0000 accounting_software: 97 changes\n 📝\u0000 scheduling_tool: 14 changes\n 📝\u0000 city: 252 changes\n 📝\u0000 estimating_tool: 1 changes\n 📝\u0000 amount: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 87\n\n 🔔\u0000 Event: property_change\n Count: 727\n Properties:\n 📝\u0000 lastname: 82 changes\n 📝\u0000 phone: 24 changes\n 📝\u0000 email: 84 changes\n 📝\u0000 firstname: 87 changes\n 📝\u0000 jobtitle: 81 changes\n 📝\u0000 hubspot_owner_id: 248 changes\n 📝\u0000 mobilephone: 82 changes\n 📝\u0000 country: 19 changes\n 📝\u0000 associatedcompanyid: 20 changes\n\n 🔔\u0000 Event: association_change\n Count: 43\n\n\n INFO Looking for metrics: Config 896 (Mintago - 946), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 896 (Mintago - 946)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 1668\n\n 🔔\u0000 Event: creation\n Count: 217\n\n 🔔\u0000 Event: property_change\n Count: 890\n Properties:\n 📝\u0000 hubspot_owner_id: 50 changes\n 📝\u0000 industry: 150 changes\n 📝\u0000 phone: 120 changes\n 📝\u0000 domain: 212 changes\n 📝\u0000 name: 186 changes\n 📝\u0000 country: 172 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 984\n\n 🔔\u0000 Event: association_change\n Count: 2039\n\n 🔔\u0000 Event: property_change\n Count: 6980\n Properties:\n 📝\u0000 phone: 824 changes\n 📝\u0000 hubspot_owner_id: 691 changes\n 📝\u0000 jobtitle: 990 changes\n 📝\u0000 email: 861 changes\n 📝\u0000 lastname: 1006 changes\n 📝\u0000 firstname: 986 changes\n 📝\u0000 associatedcompanyid: 820 changes\n 📝\u0000 country: 20 changes\n 📝\u0000 mobilephone: 782 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 419\n\n 🔔\u0000 Event: property_change\n Count: 153\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 hs_deal_stage_probability: 41 changes\n 📝\u0000 dealname: 8 changes\n 📝\u0000 hs_next_step: 3 changes\n 📝\u0000 dealstage: 29 changes\n 📝\u0000 closedate: 24 changes\n 📝\u0000 hs_manual_forecast_category: 23 changes\n 📝\u0000 deal_currency_code: 6 changes\n 📝\u0000 amount_in_home_currency: 13 changes\n\n\n INFO Looking for metrics: Config 908 (JPA Workspaces - 956), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 908 (JPA Workspaces - 956)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 dealstage: 4 changes\n 📝\u0000 hs_deal_stage_probability: 7 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 447\n Properties:\n 📝\u0000 hubspot_owner_id: 446 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 7\n\n 🔔\u0000 Event: property_change\n Count: 721\n Properties:\n 📝\u0000 lastname: 9 changes\n 📝\u0000 email: 12 changes\n 📝\u0000 firstname: 12 changes\n 📝\u0000 mobilephone: 4 changes\n 📝\u0000 hubspot_owner_id: 675 changes\n 📝\u0000 jobtitle: 2 changes\n 📝\u0000 phone: 4 changes\n 📝\u0000 associatedcompanyid: 2 changes\n 📝\u0000 country: 1 changes\n\n\n INFO Looking for metrics: Config 171 (GaggleAMP Inc. - 189), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 171 (GaggleAMP Inc. - 189)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 175\n Properties:\n 📝\u0000 hubspot_owner_id: 98 changes\n 📝\u0000 name: 14 changes\n 📝\u0000 country: 14 changes\n 📝\u0000 industry: 22 changes\n 📝\u0000 domain: 15 changes\n 📝\u0000 phone: 12 changes\n\n 🔔\u0000 Event: creation\n Count: 15\n\n 🔔\u0000 Event: association_change\n Count: 424\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 212\n\n 🔔\u0000 Event: property_change\n Count: 1862\n Properties:\n 📝\u0000 hubspot_owner_id: 356 changes\n 📝\u0000 country: 231 changes\n 📝\u0000 lastname: 213 changes\n 📝\u0000 jobtitle: 214 changes\n 📝\u0000 email: 212 changes\n 📝\u0000 firstname: 212 changes\n 📝\u0000 associatedcompanyid: 212 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 phone: 209 changes\n\n 🔔\u0000 Event: association_change\n Count: 425\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 dealstage: 2 changes\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 closedate: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 1\n\n\n INFO Looking for metrics: Config 880 (Immutable - 931), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 880 (Immutable - 931)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 4\n Properties:\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 21\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 1831\n\n 🔔\u0000 Event: creation\n Count: 736\n\n 🔔\u0000 Event: property_change\n Count: 3020\n Properties:\n 📝\u0000 lastname: 536 changes\n 📝\u0000 hubspot_owner_id: 169 changes\n 📝\u0000 jobtitle: 723 changes\n 📝\u0000 country: 155 changes\n 📝\u0000 firstname: 544 changes\n 📝\u0000 email: 448 changes\n 📝\u0000 associatedcompanyid: 441 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 mobilephone: 2 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 1818\n\n 🔔\u0000 Event: property_change\n Count: 308\n Properties:\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 name: 139 changes\n 📝\u0000 domain: 158 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 158\n\n\n INFO Looking for metrics: Config 877 (GroWrk Remote - 927), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 877 (GroWrk Remote - 927)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 25\n Properties:\n 📝\u0000 industry: 5 changes\n 📝\u0000 name: 5 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 domain: 4 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 44\n\n 🔔\u0000 Event: creation\n Count: 5\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 82\n Properties:\n 📝\u0000 hs_deal_stage_probability: 19 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 company_name: 8 changes\n 📝\u0000 amount: 12 changes\n 📝\u0000 dealstage: 8 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 deal_currency_code: 9 changes\n 📝\u0000 dealname: 4 changes\n 📝\u0000 agreement_model: 4 changes\n 📝\u0000 is_the_prospect_looking_at_competitors_: 2 changes\n 📝\u0000 is_the_prospect_using_a_competitor_: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 58\n\n 🔔\u0000 Event: creation\n Count: 11\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 58\n\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 country: 3 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 lastname: 8 changes\n 📝\u0000 associatedcompanyid: 10 changes\n 📝\u0000 firstname: 6 changes\n 📝\u0000 hubspot_owner_id: 9 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 10\n\n\n INFO Looking for metrics: Config 928 (Portless - 995), Date 2026-04-16.","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
-2820137514381371383
|
7542116692776071031
|
visual_change
|
accessibility
|
NULL
|
📝 email: 438 changes
📝 associatedcom 📝 email: 438 changes
📝 associatedcompanyid: 405 changes
📝 jobtitle: 760 changes
📝 firstname: 423 changes
📝 lastname: 320 changes
📝 hubspot_owner_id: 66 changes
📝 country: 2 changes
📝 phone: 3 changes
📝 hs_avatar_filemanager_key: 3 changes
📝 mobilephone: 1 changes
🔔 Event: association_change
Count: 841
📦 Object Type: deal
🔔 Event: property_change
Count: 94
Properties:
📝 dealstage: 11 changes
📝 hs_deal_stage_probability: 15 changes
📝 closedate: 16 changes
📝 hs_manual_forecast_category: 13 changes
📝 hs_next_step: 20 changes
📝 amount: 5 changes
📝 dealname: 7 changes
📝 hubspot_owner_id: 2 changes
📝 dealtype: 3 changes
📝 createdate: 2 changes
🔔 Event: creation
Count: 4
🔔 Event: association_change
Count: 13
📦 Object Type: company
🔔 Event: association_change
Count: 844
🔔 Event: property_change
Count: 202
Properties:
📝 country: 54 changes
📝 hubspot_owner_id: 47 changes
📝 domain: 57 changes
📝 name: 43 changes
📝 industry: 1 changes
🔔 Event: creation
Count: 57
INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16.
📊 Webhook Metrics for Config 533 (Connectd - 559)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 720
🔔 Event: property_change
Count: 3906
Properties:
📝 mobilephone: 15 changes
📝 lastname: 766 changes
📝 phone: 699 changes
📝 firstname: 773 changes
📝 email: 725 changes
📝 hubspot_owner_id: 757 changes
📝 jobtitle: 99 changes
📝 country: 72 changes
🔔 Event: association_change
Count: 864
📦 Object Type: deal
🔔 Event: property_change
Count: 3984
Properties:
📝 hs_deal_stage_probability: 1843 changes
📝 dealstage: 1316 changes
📝 closedate: 612 changes
📝 createdate: 7 changes
📝 hubspot_owner_id: 134 changes
📝 amount: 23 changes
📝 amount_in_home_currency: 30 changes
📝 dealname: 15 changes
📝 deal_currency_code: 3 changes
📝 pipeline: 1 changes
🔔 Event: association_change
Count: 780
🔔 Event: creation
Count: 648
📦 Object Type: company
🔔 Event: association_change
Count: 88
INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16.
📊 Webhook Metrics for Config 1006 (Dovetail Software - 1076)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 9
Properties:
📝 hs_manual_forecast_category: 2 changes
📝 hs_deal_stage_probability: 3 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
🔔 Event: creation
Count: 2
📦 Object Type: contact
🔔 Event: property_change
Count: 167
Properties:
📝 associatedcompanyid: 11 changes
📝 lastname: 11 changes
📝 phone: 11 changes
📝 hubspot_owner_id: 83 changes
📝 mobilephone: 9 changes
📝 firstname: 10 changes
📝 country: 13 changes
📝 email: 9 changes
📝 jobtitle: 10 changes
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 25
📦 Object Type: company
🔔 Event: association_change
Count: 27
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 14
Properties:
📝 hubspot_owner_id: 7 changes
📝 phone: 2 changes
📝 name: 1 changes
📝 country: 2 changes
📝 industry: 1 changes
📝 domain: 1 changes
INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16.
📊 Webhook Metrics for Config 154 (Learnerbly - 172)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 2
Properties:
📝 hubspot_owner_id: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 4
📦 Object Type: company
🔔 Event: association_change
Count: 4
📦 Object Type: deal
🔔 Event: property_change
Count: 3
Properties:
📝 amount: 1 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16.
📊 Webhook Metrics for Config 892 (Logiwa - 942)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 55
🔔 Event: property_change
Count: 322
Properties:
📝 jobtitle: 56 changes
📝 lastname: 57 changes
📝 firstname: 59 changes
📝 country: 4 changes
📝 email: 55 changes
📝 hubspot_owner_id: 38 changes
📝 associatedcompanyid: 47 changes
📝 phone: 6 changes
🔔 Event: association_change
Count: 96
📦 Object Type: company
🔔 Event: creation
Count: 16
🔔 Event: property_change
Count: 42
Properties:
📝 name: 21 changes
📝 domain: 16 changes
📝 hubspot_owner_id: 5 changes
🔔 Event: association_change
Count: 96
📦 Object Type: deal
🔔 Event: property_change
Count: 151
Properties:
📝 notes_last_updated: 139 changes
📝 closedate: 3 changes
📝 dealstage: 3 changes
📝 current_wms: 1 changes
📝 hs_deal_stage_probability: 3 changes
📝 amount: 1 changes
📝 hs_manual_forecast_category: 1 changes
INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16.
📊 Webhook Metrics for Config 882 (GoGlobal - 933)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 837
Properties:
📝 hs_next_step: 93 changes
📝 situation: 80 changes
📝 compelling_event: 76 changes
📝 decision_process: 72 changes
📝 decision_criteria: 76 changes
📝 problem: 50 changes
📝 impact: 50 changes
📝 amount: 73 changes
📝 amount_in_home_currency: 63 changes
📝 closedate: 19 changes
📝 dealstage: 39 changes
📝 description: 6 changes
📝 hs_deal_stage_probability: 51 changes
📝 dealname: 22 changes
📝 deal_currency_code: 24 changes
📝 hs_manual_forecast_category: 18 changes
📝 hiring_countries: 4 changes
📝 leadtype: 2 changes
📝 manager_forecast_notes: 10 changes
📝 competitors____please_specify: 1 changes
📝 closed_won_reason_jiminny_ai: 1 changes
📝 client_handover_notes_jiminny_ai: 1 changes
📝 lead_source_deal: 2 changes
📝 hubspot_owner_id: 4 changes
🔔 Event: association_change
Count: 48
📦 Object Type: company
🔔 Event: property_change
Count: 759
Properties:
📝 domain: 148 changes
📝 name: 140 changes
📝 country: 135 changes
📝 phone: 115 changes
📝 industry: 124 changes
📝 hubspot_owner_id: 97 changes
🔔 Event: creation
Count: 147
🔔 Event: association_change
Count: 1369
📦 Object Type: contact
🔔 Event: property_change
Count: 4203
Properties:
📝 lastname: 666 changes
📝 email: 600 changes
📝 hubspot_owner_id: 562 changes
📝 firstname: 608 changes
📝 jobtitle: 555 changes
📝 country: 585 changes
📝 associatedcompanyid: 585 changes
📝 phone: 31 changes
📝 mobilephone: 11 changes
🔔 Event: creation
Count: 600
🔔 Event: association_change
Count: 1349
INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16.
📊 Webhook Metrics for Config 797 (Kodex - 848)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 504
Properties:
📝 phone: 42 changes
📝 firstname: 48 changes
📝 email: 44 changes
📝 lastname: 50 changes
📝 associatedcompanyid: 138 changes
📝 jobtitle: 38 changes
📝 hubspot_owner_id: 103 changes
📝 mobilephone: 37 changes
📝 country: 4 changes
🔔 Event: creation
Count: 44
🔔 Event: association_change
Count: 623
📦 Object Type: company
🔔 Event: association_change
Count: 623
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 74
Properties:
📝 country: 8 changes
📝 name: 9 changes
📝 domain: 12 changes
📝 hubspot_owner_id: 30 changes
📝 industry: 8 changes
📝 phone: 7 changes
📦 Object Type: deal
🔔 Event: association_change
Count: 2
🔔 Event: property_change
Count: 4
Properties:
📝 amount: 1 changes
📝 hubspot_owner_id: 1 changes
📝 closedate: 1 changes
📝 dealname: 1 changes
INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16.
📊 Webhook Metrics for Config 636 (ProofPilot - 657)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 44
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 142
Properties:
📝 associatedcompanyid: 21 changes
📝 hubspot_owner_id: 24 changes
📝 jobtitle: 28 changes
📝 country: 14 changes
📝 lastname: 16 changes
📝 email: 14 changes
📝 phone: 8 changes
📝 firstname: 16 changes
📝 mobilephone: 1 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 8
Properties:
📝 dealtype: 1 changes
📝 amount: 2 changes
📝 closedate: 1 changes
📝 dealname: 2 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 44
INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16.
📊 Webhook Metrics for Config 1063 (Base.com - 1125)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 3464
🔔 Event: property_change
Count: 1320
Properties:
📝 name: 550 changes
📝 domain: 487 changes
📝 hubspot_owner_id: 157 changes
📝 phone: 35 changes
📝 country: 30 changes
📝 industry: 61 changes
🔔 Event: creation
Count: 604
📦 Object Type: contact
🔔 Event: property_change
Count: 8211
Properties:
📝 phone: 489 changes
📝 firstname: 1415 changes
📝 lastname: 1329 changes
📝 email: 1552 changes
📝 country: 400 changes
📝 associatedcompanyid: 1554 changes
📝 hubspot_owner_id: 428 changes
📝 jobtitle: 1026 changes
📝 mobilephone: 18 changes
🔔 Event: creation
Count: 1559
🔔 Event: association_change
Count: 3382
📦 Object Type: deal
🔔 Event: property_change
Count: 469
Properties:
📝 dealstage: 74 changes
📝 hs_deal_stage_probability: 112 changes
📝 closedate: 39 changes
📝 implementation_type: 9 changes
📝 deal_currency_code: 23 changes
📝 minimum_fee: 33 changes
📝 estimated_fulfilment_orders_per_month: 37 changes
📝 hubspot_owner_id: 8 changes
📝 dealtype: 2 changes
📝 amount: 26 changes
📝 monthly_orders_processed_by_base_with_normal_fee: 20 changes
📝 average_order_value: 18 changes
📝 estimated_orders_per_month: 9 changes
📝 dealname: 3 changes
📝 pipeline: 1 changes
📝 dor_principal_ia: 4 changes
📝 objecao_central_ia: 4 changes
📝 proximo_passo_ia: 4 changes
📝 resumo_da_reuniao_ia: 4 changes
📝 categoria_do_portfolio_ia: 3 changes
📝 perfil_comportamental_do_prospect_ia: 4 changes
📝 score_do_vendedor_ia: 4 changes
📝 temperatura_do_deal_ia: 4 changes
📝 nota_da_demo_ia: 4 changes
📝 analise_de_tecnicas_de_vendas_ia: 4 changes
📝 perfil_do_cliente_icp_ia: 4 changes
📝 erp: 8 changes
📝 hub_ia: 2 changes
📝 gap_de_funcionalidade_ia: 2 changes
🔔 Event: association_change
Count: 160
🔔 Event: creation
Count: 41
INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16.
📊 Webhook Metrics for Config 766 (Marsello - 781)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 22
🔔 Event: property_change
Count: 87
Properties:
📝 phone: 5 changes
📝 country: 11 changes
📝 domain: 13 changes
📝 industry: 8 changes
📝 name: 27 changes
📝 hubspot_owner_id: 23 changes
🔔 Event: association_change
Count: 203
📦 Object Type: contact
🔔 Event: property_change
Count: 337
Properties:
📝 jobtitle: 19 changes
📝 hubspot_owner_id: 35 changes
📝 email: 83 changes
📝 associatedcompanyid: 89 changes
📝 mobilephone: 16 changes
📝 phone: 14 changes
📝 country: 17 changes
📝 firstname: 33 changes
📝 lastname: 31 changes
🔔 Event: creation
Count: 24
🔔 Event: association_change
Count: 202
📦 Object Type: deal
🔔 Event: property_change
Count: 16
Properties:
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
📝 dealname: 2 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
📝 sites: 1 changes
📝 customers: 1 changes
📝 deal_icp: 1 changes
📝 integrations: 1 changes
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 3
INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16.
📊 Webhook Metrics for Config 803 (E3 - 854)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 134
🔔 Event: property_change
Count: 5
Properties:
📝 phone: 1 changes
📝 name: 2 changes
📝 domain: 1 changes
📝 hubspot_owner_id: 1 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 367
Properties:
📝 hubspot_owner_id: 64 changes
📝 jobtitle: 36 changes
📝 lastname: 52 changes
📝 firstname: 58 changes
📝 associatedcompanyid: 51 changes
📝 email: 60 changes
📝 phone: 42 changes
📝 mobilephone: 3 changes
📝 country: 1 changes
🔔 Event: creation
Count: 62
🔔 Event: association_change
Count: 124
📦 Object Type: deal
🔔 Event: property_change
Count: 104
Properties:
📝 dealstage: 23 changes
📝 hs_deal_stage_probability: 33 changes
📝 hs_manual_forecast_category: 26 changes
📝 amount: 10 changes
📝 closedate: 11 changes
📝 dealname: 1 changes
🔔 Event: association_change
Count: 42
🔔 Event: creation
Count: 13
INFO Looking for metrics: Config 944 (OneCrew - 1018), Date 2026-04-16.
📊 Webhook Metrics for Config 944 (OneCrew - 1018)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 46
🔔 Event: creation
Count: 10
🔔 Event: property_change
Count: 134
Properties:
📝 phone: 3 changes
📝 name: 10 changes
📝 country: 9 changes
📝 domain: 9 changes
📝 hubspot_owner_id: 101 changes
📝 industry: 2 changes
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: association_change
Count: 9
🔔 Event: property_change
Count: 3950
Properties:
📝 pain_points_and_deal_planning: 549 changes
📝 next_steps: 541 changes
📝 objections_and_blockers: 520 changes
📝 crm: 68 changes
📝 proposal_tool: 89 changes
📝 map_tool: 15 changes
📝 total_in_office: 221 changes
📝 business_impact_jiminny: 495 changes
📝 contact_information_jiminny: 501 changes
📝 state_region: 293 changes
📝 total_field_leads: 138 changes
📝 users__crew: 129 changes
📝 closedate: 3 changes
📝 dealstage: 7 changes
📝 hs_deal_stage_probability: 10 changes
📝 hs_manual_forecast_category: 5 changes
📝 accounting_software: 97 changes
📝 scheduling_tool: 14 changes
📝 city: 252 changes
📝 estimating_tool: 1 changes
📝 amount: 2 changes
📦 Object Type: contact
🔔 Event: creation
Count: 87
🔔 Event: property_change
Count: 727
Properties:
📝 lastname: 82 changes
📝 phone: 24 changes
📝 email: 84 changes
📝 firstname: 87 changes
📝 jobtitle: 81 changes
📝 hubspot_owner_id: 248 changes
📝 mobilephone: 82 changes
📝 country: 19 changes
📝 associatedcompanyid: 20 changes
🔔 Event: association_change
Count: 43
INFO Looking for metrics: Config 896 (Mintago - 946), Date 2026-04-16.
📊 Webhook Metrics for Config 896 (Mintago - 946)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 1668
🔔 Event: creation
Count: 217
🔔 Event: property_change
Count: 890
Properties:
📝 hubspot_owner_id: 50 changes
📝 industry: 150 changes
📝 phone: 120 changes
📝 domain: 212 changes
📝 name: 186 changes
📝 country: 172 changes
📦 Object Type: contact
🔔 Event: creation
Count: 984
🔔 Event: association_change
Count: 2039
🔔 Event: property_change
Count: 6980
Properties:
📝 phone: 824 changes
📝 hubspot_owner_id: 691 changes
📝 jobtitle: 990 changes
📝 email: 861 changes
📝 lastname: 1006 changes
📝 firstname: 986 changes
📝 associatedcompanyid: 820 changes
📝 country: 20 changes
📝 mobilephone: 782 changes
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 419
🔔 Event: property_change
Count: 153
Properties:
📝 hubspot_owner_id: 6 changes
📝 hs_deal_stage_probability: 41 changes
📝 dealname: 8 changes
📝 hs_next_step: 3 changes
📝 dealstage: 29 changes
📝 closedate: 24 changes
📝 hs_manual_forecast_category: 23 changes
📝 deal_currency_code: 6 changes
📝 amount_in_home_currency: 13 changes
INFO Looking for metrics: Config 908 (JPA Workspaces - 956), Date 2026-04-16.
📊 Webhook Metrics for Config 908 (JPA Workspaces - 956)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: property_change
Count: 14
Properties:
📝 dealstage: 4 changes
📝 hs_deal_stage_probability: 7 changes
📝 hs_manual_forecast_category: 3 changes
🔔 Event: association_change
Count: 9
📦 Object Type: company
🔔 Event: property_change
Count: 447
Properties:
📝 hubspot_owner_id: 446 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 10
📦 Object Type: contact
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 7
🔔 Event: property_change
Count: 721
Properties:
📝 lastname: 9 changes
📝 email: 12 changes
📝 firstname: 12 changes
📝 mobilephone: 4 changes
📝 hubspot_owner_id: 675 changes
📝 jobtitle: 2 changes
📝 phone: 4 changes
📝 associatedcompanyid: 2 changes
📝 country: 1 changes
INFO Looking for metrics: Config 171 (GaggleAMP Inc. - 189), Date 2026-04-16.
📊 Webhook Metrics for Config 171 (GaggleAMP Inc. - 189)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 175
Properties:
📝 hubspot_owner_id: 98 changes
📝 name: 14 changes
📝 country: 14 changes
📝 industry: 22 changes
📝 domain: 15 changes
📝 phone: 12 changes
🔔 Event: creation
Count: 15
🔔 Event: association_change
Count: 424
📦 Object Type: contact
🔔 Event: creation
Count: 212
🔔 Event: property_change
Count: 1862
Properties:
📝 hubspot_owner_id: 356 changes
📝 country: 231 changes
📝 lastname: 213 changes
📝 jobtitle: 214 changes
📝 email: 212 changes
📝 firstname: 212 changes
📝 associatedcompanyid: 212 changes
📝 mobilephone: 3 changes
📝 phone: 209 changes
🔔 Event: association_change
Count: 425
📦 Object Type: deal
🔔 Event: property_change
Count: 8
Properties:
📝 dealstage: 2 changes
📝 hs_deal_stage_probability: 2 changes
📝 closedate: 2 changes
📝 hs_manual_forecast_category: 2 changes
🔔 Event: association_change
Count: 1
INFO Looking for metrics: Config 880 (Immutable - 931), Date 2026-04-16.
📊 Webhook Metrics for Config 880 (Immutable - 931)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 4
Properties:
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
🔔 Event: association_change
Count: 21
📦 Object Type: contact
🔔 Event: association_change
Count: 1831
🔔 Event: creation
Count: 736
🔔 Event: property_change
Count: 3020
Properties:
📝 lastname: 536 changes
📝 hubspot_owner_id: 169 changes
📝 jobtitle: 723 changes
📝 country: 155 changes
📝 firstname: 544 changes
📝 email: 448 changes
📝 associatedcompanyid: 441 changes
📝 phone: 2 changes
📝 mobilephone: 2 changes
📦 Object Type: company
🔔 Event: association_change
Count: 1818
🔔 Event: property_change
Count: 308
Properties:
📝 hubspot_owner_id: 8 changes
📝 name: 139 changes
📝 domain: 158 changes
📝 country: 1 changes
📝 industry: 1 changes
📝 phone: 1 changes
🔔 Event: creation
Count: 158
INFO Looking for metrics: Config 877 (GroWrk Remote - 927), Date 2026-04-16.
📊 Webhook Metrics for Config 877 (GroWrk Remote - 927)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 25
Properties:
📝 industry: 5 changes
📝 name: 5 changes
📝 country: 4 changes
📝 domain: 4 changes
📝 hubspot_owner_id: 6 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 44
🔔 Event: creation
Count: 5
📦 Object Type: deal
🔔 Event: property_change
Count: 82
Properties:
📝 hs_deal_stage_probability: 19 changes
📝 hubspot_owner_id: 5 changes
📝 company_name: 8 changes
📝 amount: 12 changes
📝 dealstage: 8 changes
📝 closedate: 9 changes
📝 deal_currency_code: 9 changes
📝 dealname: 4 changes
📝 agreement_model: 4 changes
📝 is_the_prospect_looking_at_competitors_: 2 changes
📝 is_the_prospect_using_a_competitor_: 2 changes
🔔 Event: association_change
Count: 58
🔔 Event: creation
Count: 11
📦 Object Type: contact
🔔 Event: association_change
Count: 58
🔔 Event: property_change
Count: 49
Properties:
📝 country: 3 changes
📝 email: 9 changes
📝 lastname: 8 changes
📝 associatedcompanyid: 10 changes
📝 firstname: 6 changes
📝 hubspot_owner_id: 9 changes
📝 jobtitle: 3 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 10
INFO Looking for metrics: Config 928 (Portless - 995), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69506
|
1599
|
8
|
2026-04-22T08:13:54.364780+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845634364_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
📝 email: 117 changes
📝 lastname: 69 📝 email: 117 changes
📝 lastname: 69 changes
📝 firstname: 74 changes
📝 associatedcompanyid: 74 changes
📝 hubspot_owner_id: 156 changes
📝 jobtitle: 28 changes
📝 country: 22 changes
📝 phone: 18 changes
📝 mobilephone: 16 changes
📦 Object Type: company
🔔 Event: creation
Count: 21
🔔 Event: property_change
Count: 78
Properties:
📝 domain: 22 changes
📝 name: 23 changes
📝 hubspot_owner_id: 27 changes
📝 phone: 3 changes
📝 industry: 1 changes
📝 country: 2 changes
🔔 Event: association_change
Count: 167
📦 Object Type: deal
🔔 Event: association_change
Count: 18
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 49
Properties:
📝 dealstage: 13 changes
📝 hs_deal_stage_probability: 18 changes
📝 hs_manual_forecast_category: 10 changes
📝 hubspot_owner_id: 2 changes
📝 hs_next_step: 1 changes
📝 amount: 2 changes
📝 closedate: 3 changes
INFO Looking for metrics: Config 1015 (Travefy - 1049), Date 2026-04-16.
📊 Webhook Metrics for Config 1015 (Travefy - 1049)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 1064
Properties:
📝 firstname: 194 changes
📝 phone: 141 changes
📝 email: 156 changes
📝 lastname: 171 changes
📝 associatedcompanyid: 156 changes
📝 hubspot_owner_id: 228 changes
📝 jobtitle: 11 changes
📝 mobilephone: 5 changes
📝 country: 2 changes
🔔 Event: creation
Count: 154
🔔 Event: association_change
Count: 411
📦 Object Type: deal
🔔 Event: property_change
Count: 1072
Properties:
📝 deal_currency_code: 98 changes
📝 amount: 108 changes
📝 hs_deal_stage_probability: 262 changes
📝 hs_manual_forecast_category: 217 changes
📝 hubspot_owner_id: 107 changes
📝 closedate: 109 changes
📝 dealstage: 163 changes
📝 seats_interest: 2 changes
📝 pipeline: 5 changes
📝 competitor_deal: 1 changes
🔔 Event: creation
Count: 99
🔔 Event: association_change
Count: 297
📦 Object Type: company
🔔 Event: creation
Count: 151
🔔 Event: association_change
Count: 510
🔔 Event: property_change
Count: 263
Properties:
📝 name: 171 changes
📝 hubspot_owner_id: 92 changes
INFO Looking for metrics: Config 413 (VCC - 347), Date 2026-04-16.
📊 Webhook Metrics for Config 413 (VCC - 347)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: property_change
Count: 10
Properties:
📝 closedate: 3 changes
📝 amount: 1 changes
📝 dealstage: 2 changes
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
🔔 Event: association_change
Count: 1
📦 Object Type: contact
🔔 Event: property_change
Count: 12
Properties:
📝 email: 1 changes
📝 hubspot_owner_id: 2 changes
📝 associatedcompanyid: 1 changes
📝 phone: 1 changes
📝 jobtitle: 3 changes
📝 country: 1 changes
📝 lastname: 1 changes
📝 mobilephone: 1 changes
📝 firstname: 1 changes
🔔 Event: association_change
Count: 2
🔔 Event: creation
Count: 1
📦 Object Type: company
🔔 Event: association_change
Count: 3
🔔 Event: property_change
Count: 18
Properties:
📝 name: 9 changes
📝 domain: 9 changes
🔔 Event: creation
Count: 9
INFO Looking for metrics: Config 591 (Data & AI Literacy Academy - 615), Date 2026-04-16.
📊 Webhook Metrics for Config 591 (Data & AI Literacy Academy - 615)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 30
Properties:
📝 hubspot_owner_id: 16 changes
📝 name: 7 changes
📝 domain: 7 changes
🔔 Event: association_change
Count: 122
🔔 Event: creation
Count: 8
📦 Object Type: deal
🔔 Event: property_change
Count: 34
Properties:
📝 amount: 1 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 10 changes
📝 dealstage: 6 changes
📝 hs_deal_stage_probability: 6 changes
📝 hs_manual_forecast_category: 9 changes
📦 Object Type: contact
🔔 Event: creation
Count: 39
🔔 Event: association_change
Count: 122
🔔 Event: property_change
Count: 306
Properties:
📝 jobtitle: 29 changes
📝 hubspot_owner_id: 70 changes
📝 firstname: 36 changes
📝 lastname: 36 changes
📝 associatedcompanyid: 42 changes
📝 mobilephone: 27 changes
📝 email: 39 changes
📝 phone: 27 changes
INFO Looking for metrics: Config 1031 (CUCollaborate - 1096), Date 2026-04-16.
📊 Webhook Metrics for Config 1031 (CUCollaborate - 1096)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 9
🔔 Event: property_change
Count: 100
Properties:
📝 country: 12 changes
📝 jobtitle: 16 changes
📝 phone: 10 changes
📝 email: 14 changes
📝 hubspot_owner_id: 15 changes
📝 lastname: 8 changes
📝 firstname: 9 changes
📝 associatedcompanyid: 9 changes
📝 mobilephone: 7 changes
🔔 Event: association_change
Count: 24
📦 Object Type: deal
🔔 Event: creation
Count: 5
🔔 Event: association_change
Count: 16
🔔 Event: property_change
Count: 47
Properties:
📝 dealstage: 7 changes
📝 hs_deal_stage_probability: 12 changes
📝 closedate: 9 changes
📝 hs_manual_forecast_category: 10 changes
📝 dealname: 3 changes
📝 deal_currency_code: 1 changes
📝 amount: 2 changes
📝 hs_next_step: 2 changes
📝 hubspot_owner_id: 1 changes
📦 Object Type: company
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 12
Properties:
📝 country: 2 changes
📝 domain: 2 changes
📝 industry: 2 changes
📝 phone: 2 changes
📝 name: 2 changes
📝 hubspot_owner_id: 2 changes
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 1025 (Predictiv - 1092), Date 2026-04-16.
📊 Webhook Metrics for Config 1025 (Predictiv - 1092)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 5
Properties:
📝 domain: 2 changes
📝 name: 2 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: association_change
Count: 6
🔔 Event: creation
Count: 2
📦 Object Type: contact
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 17
Properties:
📝 email: 3 changes
📝 phone: 2 changes
📝 associatedcompanyid: 3 changes
📝 hubspot_owner_id: 2 changes
📝 country: 2 changes
📝 firstname: 2 changes
📝 lastname: 2 changes
📝 jobtitle: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 1051 (IndySoft - 1115), Date 2026-04-16.
📊 Webhook Metrics for Config 1051 (IndySoft - 1115)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 29
🔔 Event: property_change
Count: 11
Properties:
📝 domain: 4 changes
📝 name: 2 changes
📝 phone: 1 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 hubspot_owner_id: 2 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 17
Properties:
📝 dealstage: 3 changes
📝 hs_deal_stage_probability: 4 changes
📝 hs_manual_forecast_category: 3 changes
📝 deal_currency_code: 1 changes
📝 amount: 4 changes
📝 closedate: 2 changes
🔔 Event: association_change
Count: 3
🔔 Event: creation
Count: 1
📦 Object Type: contact
🔔 Event: property_change
Count: 64
Properties:
📝 associatedcompanyid: 10 changes
📝 email: 7 changes
📝 lastname: 11 changes
📝 firstname: 11 changes
📝 mobilephone: 1 changes
📝 phone: 9 changes
📝 jobtitle: 7 changes
📝 hubspot_owner_id: 8 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 966 (Crowdcube Ltd - 263), Date 2026-04-16.
📊 Webhook Metrics for Config 966 (Crowdcube Ltd - 263)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 204
Properties:
📝 amount: 6 changes
📝 amount_in_home_currency: 6 changes
📝 dealstage: 46 changes
📝 hs_deal_stage_probability: 53 changes
📝 hs_manual_forecast_category: 52 changes
📝 closedate: 40 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: association_change
Count: 39
📦 Object Type: contact
🔔 Event: property_change
Count: 126
Properties:
📝 phone: 5 changes
📝 firstname: 19 changes
📝 lastname: 17 changes
📝 hubspot_owner_id: 27 changes
📝 email: 20 changes
📝 associatedcompanyid: 16 changes
📝 country: 8 changes
📝 jobtitle: 13 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 22
🔔 Event: association_change
Count: 45
📦 Object Type: company
🔔 Event: property_change
Count: 61
Properties:
📝 domain: 13 changes
📝 name: 12 changes
📝 industry: 8 changes
📝 phone: 6 changes
📝 hubspot_owner_id: 16 changes
📝 country: 6 changes
🔔 Event: association_change
Count: 58
🔔 Event: creation
Count: 13
INFO Looking for metrics: Config 300 (Prowly - 318), Date 2026-04-16.
📊 Webhook Metrics for Config 300 (Prowly - 318)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 66
🔔 Event: property_change
Count: 26
Properties:
📝 hubspot_owner_id: 3 changes
📝 domain: 10 changes
📝 name: 10 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 phone: 1 changes
📦 Object Type: contact
🔔 Event: creation
Count: 33
🔔 Event: association_change
Count: 55
🔔 Event: property_change
Count: 114
Properties:
📝 firstname: 23 changes
📝 email: 33 changes
📝 lastname: 9 changes
📝 country: 9 changes
📝 associatedcompanyid: 21 changes
📝 hubspot_owner_id: 15 changes
📝 phone: 2 changes
📝 jobtitle: 2 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 80
Properties:
📝 pipeline: 2 changes
📝 dealstage: 10 changes
📝 amount: 20 changes
📝 dealname: 2 changes
📝 closedate: 15 changes
📝 hs_deal_stage_probability: 16 changes
📝 deal_currency_code: 8 changes
📝 dealtype: 5 changes
📝 hubspot_owner_id: 2 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 37
INFO Looking for metrics: Config 265 (Orbital - 283), Date 2026-04-16.
📊 Webhook Metrics for Config 265 (Orbital - 283)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: property_change
Count: 207
Properties:
📝 deal_risk: 62 changes
📝 deal_probability: 29 changes
📝 competitors_summary: 42 changes
📝 closure_forecast: 33 changes
📝 competitors: 12 changes
📝 hs_deal_stage_probability: 5 changes
📝 dealstage: 7 changes
📝 deal_risk_dropdown: 6 changes
📝 amount: 10 changes
📝 hs_next_step: 1 changes
🔔 Event: association_change
Count: 45
📦 Object Type: company
🔔 Event: property_change
Count: 48
Properties:
📝 industry: 21 changes
📝 domain: 11 changes
📝 name: 9 changes
📝 hubspot_owner_id: 3 changes
📝 country: 2 changes
📝 phone: 2 changes
🔔 Event: creation
Count: 11
🔔 Event: association_change
Count: 862
📦 Object Type: contact
🔔 Event: property_change
Count: 1151
Properties:
📝 hubspot_owner_id: 136 changes
📝 phone: 112 changes
📝 country: 131 changes
📝 lastname: 131 changes
📝 email: 118 changes
📝 associatedcompanyid: 261 changes
📝 firstname: 131 changes
📝 jobtitle: 125 changes
📝 mobilephone: 6 changes
🔔 Event: creation
Count: 134
🔔 Event: association_change
Count: 839
INFO Looking for metrics: Config 104 (Just Eat for Business - 111), Date 2026-04-16.
📊 Webhook Metrics for Config 104 (Just Eat for Business - 111)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 35
Properties:
📝 name: 11 changes
📝 hubspot_owner_id: 18 changes
📝 domain: 6 changes
🔔 Event: association_change
Count: 98
🔔 Event: creation
Count: 8
📦 Object Type: deal
🔔 Event: creation
Count: 11
🔔 Event: association_change
Count: 27
🔔 Event: property_change
Count: 21
Properties:
📝 hs_deal_stage_probability: 12 changes
📝 hubspot_owner_id: 4 changes
📝 dealstage: 1 changes
📝 hs_manual_forecast_category: 2 changes
📝 closedate: 2 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 797
Properties:
📝 firstname: 147 changes
📝 email: 172 changes
📝 phone: 238 changes
📝 lastname: 148 changes
📝 associatedcompanyid: 38 changes
📝 hubspot_owner_id: 42 changes
📝 jobtitle: 9 changes
📝 mobilephone: 2 changes
📝 country: 1 changes
🔔 Event: creation
Count: 52
🔔 Event: association_change
Count: 89
INFO Looking for metrics: Config 1062 (Sigma Labs - 1124), Date 2026-04-16.
📊 Webhook Metrics for Config 1062 (Sigma Labs - 1124)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 38
Properties:
📝 mobilephone: 1 changes
📝 firstname: 4 changes
📝 jobtitle: 3 changes
📝 lastname: 4 changes
📝 email: 10 changes
📝 hubspot_owner_id: 8 changes
📝 associatedcompanyid: 5 changes
📝 phone: 1 changes
📝 country: 2 changes
🔔 Event: association_change
Count: 10
🔔 Event: creation
Count: 6
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 5
Properties:
📝 country: 1 changes
📝 name: 1 changes
📝 phone: 1 changes
📝 industry: 1 changes
📝 domain: 1 changes
🔔 Event: association_change
Count: 10
INFO Looking for metrics: Config 949 (Truvi - 1023), Date 2026-04-16.
📊 Webhook Metrics for Config 949 (Truvi - 1023)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 967
🔔 Event: property_change
Count: 287
Properties:
📝 lastname: 47 changes
📝 email: 75 changes
📝 firstname: 55 changes
📝 hubspot_owner_id: 57 changes
📝 associatedcompanyid: 27 changes
📝 phone: 12 changes
📝 jobtitle: 8 changes
📝 country: 5 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 81
📦 Object Type: deal
🔔 Event: creation
Count: 18
🔔 Event: association_change
Count: 1278
🔔 Event: property_change
Count: 526
Properties:
📝 hs_deal_stage_probability: 262 changes
📝 dealstage: 247 changes
📝 closedate: 11 changes
📝 dealname: 2 changes
📝 deal_currency_code: 2 changes
📝 createdate: 1 changes
📝 pipeline: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 451
🔔 Event: property_change
Count: 68
Properties:
📝 name: 34 changes
📝 domain: 28 changes
📝 hubspot_owner_id: 6 changes
🔔 Event: creation
Count: 37
INFO Looking for metrics: Config 945 (Shinydocs - 1019), Date 2026-04-16.
📊 Webhook Metrics for Config 945 (Shinydocs - 1019)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: association_change
Count: 7
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 23
Properties:
📝 dealstage: 8 changes
📝 hs_deal_stage_probability: 9 changes
📝 pipeline: 1 changes
📝 closedate: 1 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
📝 amount_in_home_currency: 2 changes
📦 Object Type: contact
🔔 Event: association_change
Count: 11
🔔 Event: property_change
Count: 14
Properties:
📝 email: 3 changes
📝 hubspot_owner_id: 6 changes
📝 associatedcompanyid: 3 changes
📝 lastname: 1 changes
📝 firstname: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 959 (Voyager - 1031), Date 2026-04-16.
📊 Webhook Metrics for Config 959 (Voyager - 1031)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 8
Properties:
📝 domain: 5 changes
📝 hubspot_owner_id: 1 changes
📝 name: 1 changes
📝 industry: 1 changes
🔔 Event: association_change
Count: 22
📦 Object Type: deal
🔔 Event: property_change
Count: 1
Properties:
📝 amount: 1 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 82
Properties:
📝 hubspot_owner_id: 7 changes
📝 email: 13 changes
📝 jobtitle: 7 changes
📝 firstname: 16 changes
📝 lastname: 17 changes
📝 country: 3 changes
📝 associatedcompanyid: 11 changes
📝 mobilephone: 1 changes
📝 phone: 7 changes
🔔 Event: association_change
Count: 22
🔔 Event: creation
Count: 11
INFO Looking for metrics: Config 1045 (Cove - 1110), Date 2026-04-16.
📊 Webhook Metrics for Config 1045 (Cove - 1110)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 92
🔔 Event: association_change
Count: 676
🔔 Event: property_change
Count: 349
Properties:
📝 domain: 92 changes
📝 country: 76 changes
📝 hubspot_owner_id: 95 changes
📝 name: 86 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 2007
Properties:
📝 lastname: 242 changes
📝 email: 223 changes
📝 firstname: 244 changes
📝 associatedcompanyid: 286 changes
📝 phone: 235 changes
📝 hubspot_owner_id: 358 changes
📝 jobtitle: 236 changes
📝 mobilephone: 183 changes
🔔 Event: creation
Count: 244
🔔 Event: association_change
Count: 673
📦 Object Type: deal
🔔 Event: property_change
Count: 49
Properties:
📝 forecast_probability: 12 changes
📝 probability_justification: 12 changes
📝 metrics: 4 changes
📝 paper_process: 2 changes
📝 competition: 2 changes
📝 amount: 3 changes
📝 hs_deal_stage_probability: 3 changes
📝 deal_currency_code: 1 changes
📝 economic_buyer: 2 changes
📝 decision_criteria: 2 changes
📝 decision_process: 2 changes
📝 identify_pain: 2 changes
📝 champion: 2 changes
🔔 Event: association_change
Count: 9
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 1065 (Integrum ESG - 1126), Date 2026-04-16.
📊 Webhook Metrics for Config 1065 (Integrum ESG - 1126)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 48
Properties:
📝 jobtitle: 13 changes
📝 lastname: 4 changes
📝 firstname: 4 changes
📝 hubspot_owner_id: 16 changes
📝 phone: 5 changes
📝 email: 3 changes
📝 associatedcompanyid: 3 changes
🔔 Event: association_change
Count: 18
🔔 Event: creation
Count: 3
📦 Object Type: company
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 5
Properties:
📝 closedate: 2 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 2 changes
🔔 Event: association_change
Count: 14
INFO Looking for metrics: Config 680 (The Family Office Company - 700), Date 2026-04-16.
📊 Webhook Metrics for Config 680 (The Family Office Company - 700)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 2
Properties:
📝 lastname: 1 changes
📝 firstname: 1 changes
INFO Looking for metrics: Config 550 (SeedLegals - 576), Date 2026-04-16.
📊 Webhook Metrics for Config 550 (SeedLegals - 576)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 104
Properties:
📝 country: 38 changes
📝 name: 38 changes
📝 hubspot_owner_id: 28 changes
🔔 Event: association_change
Count: 155
🔔 Event: creation
Count: 38
📦 Object Type: contact
🔔 Event: creation
Count: 251
🔔 Event: association_change
Count: 156
🔔 Event: property_change
Count: 1110
Properties:
📝 lastname: 236 changes
📝 email: 219 changes
📝 phone: 149 changes
📝 firstname: 250 changes
📝 mobilephone: 68 changes
📝 country: 26 changes
📝 associatedcompanyid: 42 changes
📝 hubspot_owner_id: 120 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 285
Properties:
📝 hs_deal_stage_probability: 116 changes
📝 hubspot_owner_id: 22 changes
📝 amount: 16 changes
📝 closedate: 45 changes
📝 dealstage: 77 changes
📝 deal_currency_code: 9 changes
🔔 Event: creation
Count: 40
🔔 Event: association_change
Count: 105
INFO Looking for metrics: Config 339 (Rosterfy - 359), Date 2026-04-16.
^C
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"📝\u0000 email: 117 changes\n 📝\u0000 lastname: 69 changes\n 📝\u0000 firstname: 74 changes\n 📝\u0000 associatedcompanyid: 74 changes\n 📝\u0000 hubspot_owner_id: 156 changes\n 📝\u0000 jobtitle: 28 changes\n 📝\u0000 country: 22 changes\n 📝\u0000 phone: 18 changes\n 📝\u0000 mobilephone: 16 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 21\n\n 🔔\u0000 Event: property_change\n Count: 78\n Properties:\n 📝\u0000 domain: 22 changes\n 📝\u0000 name: 23 changes\n 📝\u0000 hubspot_owner_id: 27 changes\n 📝\u0000 phone: 3 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 167\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 18\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 dealstage: 13 changes\n 📝\u0000 hs_deal_stage_probability: 18 changes\n 📝\u0000 hs_manual_forecast_category: 10 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 hs_next_step: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 3 changes\n\n\n INFO Looking for metrics: Config 1015 (Travefy - 1049), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1015 (Travefy - 1049)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 1064\n Properties:\n 📝\u0000 firstname: 194 changes\n 📝\u0000 phone: 141 changes\n 📝\u0000 email: 156 changes\n 📝\u0000 lastname: 171 changes\n 📝\u0000 associatedcompanyid: 156 changes\n 📝\u0000 hubspot_owner_id: 228 changes\n 📝\u0000 jobtitle: 11 changes\n 📝\u0000 mobilephone: 5 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 154\n\n 🔔\u0000 Event: association_change\n Count: 411\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1072\n Properties:\n 📝\u0000 deal_currency_code: 98 changes\n 📝\u0000 amount: 108 changes\n 📝\u0000 hs_deal_stage_probability: 262 changes\n 📝\u0000 hs_manual_forecast_category: 217 changes\n 📝\u0000 hubspot_owner_id: 107 changes\n 📝\u0000 closedate: 109 changes\n 📝\u0000 dealstage: 163 changes\n 📝\u0000 seats_interest: 2 changes\n 📝\u0000 pipeline: 5 changes\n 📝\u0000 competitor_deal: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 99\n\n 🔔\u0000 Event: association_change\n Count: 297\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 151\n\n 🔔\u0000 Event: association_change\n Count: 510\n\n 🔔\u0000 Event: property_change\n Count: 263\n Properties:\n 📝\u0000 name: 171 changes\n 📝\u0000 hubspot_owner_id: 92 changes\n\n\n INFO Looking for metrics: Config 413 (VCC - 347), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 413 (VCC - 347)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 10\n Properties:\n 📝\u0000 closedate: 3 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 dealstage: 2 changes\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 1\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 12\n Properties:\n 📝\u0000 email: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 associatedcompanyid: 1 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 2\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 18\n Properties:\n 📝\u0000 name: 9 changes\n 📝\u0000 domain: 9 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n\n INFO Looking for metrics: Config 591 (Data & AI Literacy Academy - 615), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 591 (Data & AI Literacy Academy - 615)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 30\n Properties:\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 name: 7 changes\n 📝\u0000 domain: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 122\n\n 🔔\u0000 Event: creation\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 34\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 10 changes\n 📝\u0000 dealstage: 6 changes\n 📝\u0000 hs_deal_stage_probability: 6 changes\n 📝\u0000 hs_manual_forecast_category: 9 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 39\n\n 🔔\u0000 Event: association_change\n Count: 122\n\n 🔔\u0000 Event: property_change\n Count: 306\n Properties:\n 📝\u0000 jobtitle: 29 changes\n 📝\u0000 hubspot_owner_id: 70 changes\n 📝\u0000 firstname: 36 changes\n 📝\u0000 lastname: 36 changes\n 📝\u0000 associatedcompanyid: 42 changes\n 📝\u0000 mobilephone: 27 changes\n 📝\u0000 email: 39 changes\n 📝\u0000 phone: 27 changes\n\n\n INFO Looking for metrics: Config 1031 (CUCollaborate - 1096), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1031 (CUCollaborate - 1096)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: property_change\n Count: 100\n Properties:\n 📝\u0000 country: 12 changes\n 📝\u0000 jobtitle: 16 changes\n 📝\u0000 phone: 10 changes\n 📝\u0000 email: 14 changes\n 📝\u0000 hubspot_owner_id: 15 changes\n 📝\u0000 lastname: 8 changes\n 📝\u0000 firstname: 9 changes\n 📝\u0000 associatedcompanyid: 9 changes\n 📝\u0000 mobilephone: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 24\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: association_change\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 47\n Properties:\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 hs_deal_stage_probability: 12 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 hs_manual_forecast_category: 10 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 12\n Properties:\n 📝\u0000 country: 2 changes\n 📝\u0000 domain: 2 changes\n 📝\u0000 industry: 2 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 1025 (Predictiv - 1092), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1025 (Predictiv - 1092)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 domain: 2 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: creation\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 email: 3 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 associatedcompanyid: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 firstname: 2 changes\n 📝\u0000 lastname: 2 changes\n 📝\u0000 jobtitle: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 1051 (IndySoft - 1115), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1051 (IndySoft - 1115)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 29\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 domain: 4 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 hs_deal_stage_probability: 4 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 4 changes\n 📝\u0000 closedate: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 64\n Properties:\n 📝\u0000 associatedcompanyid: 10 changes\n 📝\u0000 email: 7 changes\n 📝\u0000 lastname: 11 changes\n 📝\u0000 firstname: 11 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 phone: 9 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 966 (Crowdcube Ltd - 263), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 966 (Crowdcube Ltd - 263)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 204\n Properties:\n 📝\u0000 amount: 6 changes\n 📝\u0000 amount_in_home_currency: 6 changes\n 📝\u0000 dealstage: 46 changes\n 📝\u0000 hs_deal_stage_probability: 53 changes\n 📝\u0000 hs_manual_forecast_category: 52 changes\n 📝\u0000 closedate: 40 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 39\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 126\n Properties:\n 📝\u0000 phone: 5 changes\n 📝\u0000 firstname: 19 changes\n 📝\u0000 lastname: 17 changes\n 📝\u0000 hubspot_owner_id: 27 changes\n 📝\u0000 email: 20 changes\n 📝\u0000 associatedcompanyid: 16 changes\n 📝\u0000 country: 8 changes\n 📝\u0000 jobtitle: 13 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 22\n\n 🔔\u0000 Event: association_change\n Count: 45\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 61\n Properties:\n 📝\u0000 domain: 13 changes\n 📝\u0000 name: 12 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 phone: 6 changes\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 country: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 58\n\n 🔔\u0000 Event: creation\n Count: 13\n\n\n INFO Looking for metrics: Config 300 (Prowly - 318), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 300 (Prowly - 318)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 66\n\n 🔔\u0000 Event: property_change\n Count: 26\n Properties:\n 📝\u0000 hubspot_owner_id: 3 changes\n 📝\u0000 domain: 10 changes\n 📝\u0000 name: 10 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 phone: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 33\n\n 🔔\u0000 Event: association_change\n Count: 55\n\n 🔔\u0000 Event: property_change\n Count: 114\n Properties:\n 📝\u0000 firstname: 23 changes\n 📝\u0000 email: 33 changes\n 📝\u0000 lastname: 9 changes\n 📝\u0000 country: 9 changes\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 hubspot_owner_id: 15 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 jobtitle: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 80\n Properties:\n 📝\u0000 pipeline: 2 changes\n 📝\u0000 dealstage: 10 changes\n 📝\u0000 amount: 20 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 closedate: 15 changes\n 📝\u0000 hs_deal_stage_probability: 16 changes\n 📝\u0000 deal_currency_code: 8 changes\n 📝\u0000 dealtype: 5 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 37\n\n\n INFO Looking for metrics: Config 265 (Orbital - 283), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 265 (Orbital - 283)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 207\n Properties:\n 📝\u0000 deal_risk: 62 changes\n 📝\u0000 deal_probability: 29 changes\n 📝\u0000 competitors_summary: 42 changes\n 📝\u0000 closure_forecast: 33 changes\n 📝\u0000 competitors: 12 changes\n 📝\u0000 hs_deal_stage_probability: 5 changes\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 deal_risk_dropdown: 6 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 hs_next_step: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 45\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 48\n Properties:\n 📝\u0000 industry: 21 changes\n 📝\u0000 domain: 11 changes\n 📝\u0000 name: 9 changes\n 📝\u0000 hubspot_owner_id: 3 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 phone: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 11\n\n 🔔\u0000 Event: association_change\n Count: 862\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 1151\n Properties:\n 📝\u0000 hubspot_owner_id: 136 changes\n 📝\u0000 phone: 112 changes\n 📝\u0000 country: 131 changes\n 📝\u0000 lastname: 131 changes\n 📝\u0000 email: 118 changes\n 📝\u0000 associatedcompanyid: 261 changes\n 📝\u0000 firstname: 131 changes\n 📝\u0000 jobtitle: 125 changes\n 📝\u0000 mobilephone: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 134\n\n 🔔\u0000 Event: association_change\n Count: 839\n\n\n INFO Looking for metrics: Config 104 (Just Eat for Business - 111), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 104 (Just Eat for Business - 111)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 35\n Properties:\n 📝\u0000 name: 11 changes\n 📝\u0000 hubspot_owner_id: 18 changes\n 📝\u0000 domain: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 98\n\n 🔔\u0000 Event: creation\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 11\n\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: property_change\n Count: 21\n Properties:\n 📝\u0000 hs_deal_stage_probability: 12 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 closedate: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 797\n Properties:\n 📝\u0000 firstname: 147 changes\n 📝\u0000 email: 172 changes\n 📝\u0000 phone: 238 changes\n 📝\u0000 lastname: 148 changes\n 📝\u0000 associatedcompanyid: 38 changes\n 📝\u0000 hubspot_owner_id: 42 changes\n 📝\u0000 jobtitle: 9 changes\n 📝\u0000 mobilephone: 2 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 52\n\n 🔔\u0000 Event: association_change\n Count: 89\n\n\n INFO Looking for metrics: Config 1062 (Sigma Labs - 1124), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1062 (Sigma Labs - 1124)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 38\n Properties:\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 firstname: 4 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 lastname: 4 changes\n 📝\u0000 email: 10 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 associatedcompanyid: 5 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 country: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 domain: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n\n INFO Looking for metrics: Config 949 (Truvi - 1023), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 949 (Truvi - 1023)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 967\n\n 🔔\u0000 Event: property_change\n Count: 287\n Properties:\n 📝\u0000 lastname: 47 changes\n 📝\u0000 email: 75 changes\n 📝\u0000 firstname: 55 changes\n 📝\u0000 hubspot_owner_id: 57 changes\n 📝\u0000 associatedcompanyid: 27 changes\n 📝\u0000 phone: 12 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 country: 5 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 81\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: association_change\n Count: 1278\n\n 🔔\u0000 Event: property_change\n Count: 526\n Properties:\n 📝\u0000 hs_deal_stage_probability: 262 changes\n 📝\u0000 dealstage: 247 changes\n 📝\u0000 closedate: 11 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 deal_currency_code: 2 changes\n 📝\u0000 createdate: 1 changes\n 📝\u0000 pipeline: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 451\n\n 🔔\u0000 Event: property_change\n Count: 68\n Properties:\n 📝\u0000 name: 34 changes\n 📝\u0000 domain: 28 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 37\n\n\n INFO Looking for metrics: Config 945 (Shinydocs - 1019), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 945 (Shinydocs - 1019)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 7\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 23\n Properties:\n 📝\u0000 dealstage: 8 changes\n 📝\u0000 hs_deal_stage_probability: 9 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 amount_in_home_currency: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 11\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 email: 3 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 associatedcompanyid: 3 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 959 (Voyager - 1031), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 959 (Voyager - 1031)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 domain: 5 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 industry: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 22\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1\n Properties:\n 📝\u0000 amount: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 82\n Properties:\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 email: 13 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 firstname: 16 changes\n 📝\u0000 lastname: 17 changes\n 📝\u0000 country: 3 changes\n 📝\u0000 associatedcompanyid: 11 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 phone: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 22\n\n 🔔\u0000 Event: creation\n Count: 11\n\n\n INFO Looking for metrics: Config 1045 (Cove - 1110), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1045 (Cove - 1110)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 92\n\n 🔔\u0000 Event: association_change\n Count: 676\n\n 🔔\u0000 Event: property_change\n Count: 349\n Properties:\n 📝\u0000 domain: 92 changes\n 📝\u0000 country: 76 changes\n 📝\u0000 hubspot_owner_id: 95 changes\n 📝\u0000 name: 86 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2007\n Properties:\n 📝\u0000 lastname: 242 changes\n 📝\u0000 email: 223 changes\n 📝\u0000 firstname: 244 changes\n 📝\u0000 associatedcompanyid: 286 changes\n 📝\u0000 phone: 235 changes\n 📝\u0000 hubspot_owner_id: 358 changes\n 📝\u0000 jobtitle: 236 changes\n 📝\u0000 mobilephone: 183 changes\n\n 🔔\u0000 Event: creation\n Count: 244\n\n 🔔\u0000 Event: association_change\n Count: 673\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 forecast_probability: 12 changes\n 📝\u0000 probability_justification: 12 changes\n 📝\u0000 metrics: 4 changes\n 📝\u0000 paper_process: 2 changes\n 📝\u0000 competition: 2 changes\n 📝\u0000 amount: 3 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 economic_buyer: 2 changes\n 📝\u0000 decision_criteria: 2 changes\n 📝\u0000 decision_process: 2 changes\n 📝\u0000 identify_pain: 2 changes\n 📝\u0000 champion: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 1065 (Integrum ESG - 1126), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1065 (Integrum ESG - 1126)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 48\n Properties:\n 📝\u0000 jobtitle: 13 changes\n 📝\u0000 lastname: 4 changes\n 📝\u0000 firstname: 4 changes\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 email: 3 changes\n 📝\u0000 associatedcompanyid: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 18\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 closedate: 2 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 14\n\n\n INFO Looking for metrics: Config 680 (The Family Office Company - 700), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 680 (The Family Office Company - 700)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 lastname: 1 changes\n 📝\u0000 firstname: 1 changes\n\n\n INFO Looking for metrics: Config 550 (SeedLegals - 576), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 550 (SeedLegals - 576)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 104\n Properties:\n 📝\u0000 country: 38 changes\n 📝\u0000 name: 38 changes\n 📝\u0000 hubspot_owner_id: 28 changes\n\n 🔔\u0000 Event: association_change\n Count: 155\n\n 🔔\u0000 Event: creation\n Count: 38\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 251\n\n 🔔\u0000 Event: association_change\n Count: 156\n\n 🔔\u0000 Event: property_change\n Count: 1110\n Properties:\n 📝\u0000 lastname: 236 changes\n 📝\u0000 email: 219 changes\n 📝\u0000 phone: 149 changes\n 📝\u0000 firstname: 250 changes\n 📝\u0000 mobilephone: 68 changes\n 📝\u0000 country: 26 changes\n 📝\u0000 associatedcompanyid: 42 changes\n 📝\u0000 hubspot_owner_id: 120 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 285\n Properties:\n 📝\u0000 hs_deal_stage_probability: 116 changes\n 📝\u0000 hubspot_owner_id: 22 changes\n 📝\u0000 amount: 16 changes\n 📝\u0000 closedate: 45 changes\n 📝\u0000 dealstage: 77 changes\n 📝\u0000 deal_currency_code: 9 changes\n\n 🔔\u0000 Event: creation\n Count: 40\n\n 🔔\u0000 Event: association_change\n Count: 105\n\n\n INFO Looking for metrics: Config 339 (Rosterfy - 359), Date 2026-04-16. \n\n^C\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"📝\u0000 email: 117 changes\n 📝\u0000 lastname: 69 changes\n 📝\u0000 firstname: 74 changes\n 📝\u0000 associatedcompanyid: 74 changes\n 📝\u0000 hubspot_owner_id: 156 changes\n 📝\u0000 jobtitle: 28 changes\n 📝\u0000 country: 22 changes\n 📝\u0000 phone: 18 changes\n 📝\u0000 mobilephone: 16 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 21\n\n 🔔\u0000 Event: property_change\n Count: 78\n Properties:\n 📝\u0000 domain: 22 changes\n 📝\u0000 name: 23 changes\n 📝\u0000 hubspot_owner_id: 27 changes\n 📝\u0000 phone: 3 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 167\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 18\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 dealstage: 13 changes\n 📝\u0000 hs_deal_stage_probability: 18 changes\n 📝\u0000 hs_manual_forecast_category: 10 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 hs_next_step: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 3 changes\n\n\n INFO Looking for metrics: Config 1015 (Travefy - 1049), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1015 (Travefy - 1049)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 1064\n Properties:\n 📝\u0000 firstname: 194 changes\n 📝\u0000 phone: 141 changes\n 📝\u0000 email: 156 changes\n 📝\u0000 lastname: 171 changes\n 📝\u0000 associatedcompanyid: 156 changes\n 📝\u0000 hubspot_owner_id: 228 changes\n 📝\u0000 jobtitle: 11 changes\n 📝\u0000 mobilephone: 5 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 154\n\n 🔔\u0000 Event: association_change\n Count: 411\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1072\n Properties:\n 📝\u0000 deal_currency_code: 98 changes\n 📝\u0000 amount: 108 changes\n 📝\u0000 hs_deal_stage_probability: 262 changes\n 📝\u0000 hs_manual_forecast_category: 217 changes\n 📝\u0000 hubspot_owner_id: 107 changes\n 📝\u0000 closedate: 109 changes\n 📝\u0000 dealstage: 163 changes\n 📝\u0000 seats_interest: 2 changes\n 📝\u0000 pipeline: 5 changes\n 📝\u0000 competitor_deal: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 99\n\n 🔔\u0000 Event: association_change\n Count: 297\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 151\n\n 🔔\u0000 Event: association_change\n Count: 510\n\n 🔔\u0000 Event: property_change\n Count: 263\n Properties:\n 📝\u0000 name: 171 changes\n 📝\u0000 hubspot_owner_id: 92 changes\n\n\n INFO Looking for metrics: Config 413 (VCC - 347), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 413 (VCC - 347)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 10\n Properties:\n 📝\u0000 closedate: 3 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 dealstage: 2 changes\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 1\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 12\n Properties:\n 📝\u0000 email: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 associatedcompanyid: 1 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 2\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 18\n Properties:\n 📝\u0000 name: 9 changes\n 📝\u0000 domain: 9 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n\n INFO Looking for metrics: Config 591 (Data & AI Literacy Academy - 615), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 591 (Data & AI Literacy Academy - 615)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 30\n Properties:\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 name: 7 changes\n 📝\u0000 domain: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 122\n\n 🔔\u0000 Event: creation\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 34\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 10 changes\n 📝\u0000 dealstage: 6 changes\n 📝\u0000 hs_deal_stage_probability: 6 changes\n 📝\u0000 hs_manual_forecast_category: 9 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 39\n\n 🔔\u0000 Event: association_change\n Count: 122\n\n 🔔\u0000 Event: property_change\n Count: 306\n Properties:\n 📝\u0000 jobtitle: 29 changes\n 📝\u0000 hubspot_owner_id: 70 changes\n 📝\u0000 firstname: 36 changes\n 📝\u0000 lastname: 36 changes\n 📝\u0000 associatedcompanyid: 42 changes\n 📝\u0000 mobilephone: 27 changes\n 📝\u0000 email: 39 changes\n 📝\u0000 phone: 27 changes\n\n\n INFO Looking for metrics: Config 1031 (CUCollaborate - 1096), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1031 (CUCollaborate - 1096)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: property_change\n Count: 100\n Properties:\n 📝\u0000 country: 12 changes\n 📝\u0000 jobtitle: 16 changes\n 📝\u0000 phone: 10 changes\n 📝\u0000 email: 14 changes\n 📝\u0000 hubspot_owner_id: 15 changes\n 📝\u0000 lastname: 8 changes\n 📝\u0000 firstname: 9 changes\n 📝\u0000 associatedcompanyid: 9 changes\n 📝\u0000 mobilephone: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 24\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: association_change\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 47\n Properties:\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 hs_deal_stage_probability: 12 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 hs_manual_forecast_category: 10 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 12\n Properties:\n 📝\u0000 country: 2 changes\n 📝\u0000 domain: 2 changes\n 📝\u0000 industry: 2 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 1025 (Predictiv - 1092), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1025 (Predictiv - 1092)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 domain: 2 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: creation\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 email: 3 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 associatedcompanyid: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 firstname: 2 changes\n 📝\u0000 lastname: 2 changes\n 📝\u0000 jobtitle: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 1051 (IndySoft - 1115), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1051 (IndySoft - 1115)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 29\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 domain: 4 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 hs_deal_stage_probability: 4 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 4 changes\n 📝\u0000 closedate: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 64\n Properties:\n 📝\u0000 associatedcompanyid: 10 changes\n 📝\u0000 email: 7 changes\n 📝\u0000 lastname: 11 changes\n 📝\u0000 firstname: 11 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 phone: 9 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 966 (Crowdcube Ltd - 263), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 966 (Crowdcube Ltd - 263)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 204\n Properties:\n 📝\u0000 amount: 6 changes\n 📝\u0000 amount_in_home_currency: 6 changes\n 📝\u0000 dealstage: 46 changes\n 📝\u0000 hs_deal_stage_probability: 53 changes\n 📝\u0000 hs_manual_forecast_category: 52 changes\n 📝\u0000 closedate: 40 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 39\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 126\n Properties:\n 📝\u0000 phone: 5 changes\n 📝\u0000 firstname: 19 changes\n 📝\u0000 lastname: 17 changes\n 📝\u0000 hubspot_owner_id: 27 changes\n 📝\u0000 email: 20 changes\n 📝\u0000 associatedcompanyid: 16 changes\n 📝\u0000 country: 8 changes\n 📝\u0000 jobtitle: 13 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 22\n\n 🔔\u0000 Event: association_change\n Count: 45\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 61\n Properties:\n 📝\u0000 domain: 13 changes\n 📝\u0000 name: 12 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 phone: 6 changes\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 country: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 58\n\n 🔔\u0000 Event: creation\n Count: 13\n\n\n INFO Looking for metrics: Config 300 (Prowly - 318), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 300 (Prowly - 318)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 66\n\n 🔔\u0000 Event: property_change\n Count: 26\n Properties:\n 📝\u0000 hubspot_owner_id: 3 changes\n 📝\u0000 domain: 10 changes\n 📝\u0000 name: 10 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 phone: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 33\n\n 🔔\u0000 Event: association_change\n Count: 55\n\n 🔔\u0000 Event: property_change\n Count: 114\n Properties:\n 📝\u0000 firstname: 23 changes\n 📝\u0000 email: 33 changes\n 📝\u0000 lastname: 9 changes\n 📝\u0000 country: 9 changes\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 hubspot_owner_id: 15 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 jobtitle: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 80\n Properties:\n 📝\u0000 pipeline: 2 changes\n 📝\u0000 dealstage: 10 changes\n 📝\u0000 amount: 20 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 closedate: 15 changes\n 📝\u0000 hs_deal_stage_probability: 16 changes\n 📝\u0000 deal_currency_code: 8 changes\n 📝\u0000 dealtype: 5 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 37\n\n\n INFO Looking for metrics: Config 265 (Orbital - 283), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 265 (Orbital - 283)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 207\n Properties:\n 📝\u0000 deal_risk: 62 changes\n 📝\u0000 deal_probability: 29 changes\n 📝\u0000 competitors_summary: 42 changes\n 📝\u0000 closure_forecast: 33 changes\n 📝\u0000 competitors: 12 changes\n 📝\u0000 hs_deal_stage_probability: 5 changes\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 deal_risk_dropdown: 6 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 hs_next_step: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 45\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 48\n Properties:\n 📝\u0000 industry: 21 changes\n 📝\u0000 domain: 11 changes\n 📝\u0000 name: 9 changes\n 📝\u0000 hubspot_owner_id: 3 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 phone: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 11\n\n 🔔\u0000 Event: association_change\n Count: 862\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 1151\n Properties:\n 📝\u0000 hubspot_owner_id: 136 changes\n 📝\u0000 phone: 112 changes\n 📝\u0000 country: 131 changes\n 📝\u0000 lastname: 131 changes\n 📝\u0000 email: 118 changes\n 📝\u0000 associatedcompanyid: 261 changes\n 📝\u0000 firstname: 131 changes\n 📝\u0000 jobtitle: 125 changes\n 📝\u0000 mobilephone: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 134\n\n 🔔\u0000 Event: association_change\n Count: 839\n\n\n INFO Looking for metrics: Config 104 (Just Eat for Business - 111), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 104 (Just Eat for Business - 111)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 35\n Properties:\n 📝\u0000 name: 11 changes\n 📝\u0000 hubspot_owner_id: 18 changes\n 📝\u0000 domain: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 98\n\n 🔔\u0000 Event: creation\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 11\n\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: property_change\n Count: 21\n Properties:\n 📝\u0000 hs_deal_stage_probability: 12 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 closedate: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 797\n Properties:\n 📝\u0000 firstname: 147 changes\n 📝\u0000 email: 172 changes\n 📝\u0000 phone: 238 changes\n 📝\u0000 lastname: 148 changes\n 📝\u0000 associatedcompanyid: 38 changes\n 📝\u0000 hubspot_owner_id: 42 changes\n 📝\u0000 jobtitle: 9 changes\n 📝\u0000 mobilephone: 2 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 52\n\n 🔔\u0000 Event: association_change\n Count: 89\n\n\n INFO Looking for metrics: Config 1062 (Sigma Labs - 1124), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1062 (Sigma Labs - 1124)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 38\n Properties:\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 firstname: 4 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 lastname: 4 changes\n 📝\u0000 email: 10 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 associatedcompanyid: 5 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 country: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 domain: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n\n INFO Looking for metrics: Config 949 (Truvi - 1023), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 949 (Truvi - 1023)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 967\n\n 🔔\u0000 Event: property_change\n Count: 287\n Properties:\n 📝\u0000 lastname: 47 changes\n 📝\u0000 email: 75 changes\n 📝\u0000 firstname: 55 changes\n 📝\u0000 hubspot_owner_id: 57 changes\n 📝\u0000 associatedcompanyid: 27 changes\n 📝\u0000 phone: 12 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 country: 5 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 81\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: association_change\n Count: 1278\n\n 🔔\u0000 Event: property_change\n Count: 526\n Properties:\n 📝\u0000 hs_deal_stage_probability: 262 changes\n 📝\u0000 dealstage: 247 changes\n 📝\u0000 closedate: 11 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 deal_currency_code: 2 changes\n 📝\u0000 createdate: 1 changes\n 📝\u0000 pipeline: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 451\n\n 🔔\u0000 Event: property_change\n Count: 68\n Properties:\n 📝\u0000 name: 34 changes\n 📝\u0000 domain: 28 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 37\n\n\n INFO Looking for metrics: Config 945 (Shinydocs - 1019), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 945 (Shinydocs - 1019)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 7\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 23\n Properties:\n 📝\u0000 dealstage: 8 changes\n 📝\u0000 hs_deal_stage_probability: 9 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 amount_in_home_currency: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 11\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 email: 3 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 associatedcompanyid: 3 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 959 (Voyager - 1031), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 959 (Voyager - 1031)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 domain: 5 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 industry: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 22\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1\n Properties:\n 📝\u0000 amount: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 82\n Properties:\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 email: 13 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 firstname: 16 changes\n 📝\u0000 lastname: 17 changes\n 📝\u0000 country: 3 changes\n 📝\u0000 associatedcompanyid: 11 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 phone: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 22\n\n 🔔\u0000 Event: creation\n Count: 11\n\n\n INFO Looking for metrics: Config 1045 (Cove - 1110), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1045 (Cove - 1110)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 92\n\n 🔔\u0000 Event: association_change\n Count: 676\n\n 🔔\u0000 Event: property_change\n Count: 349\n Properties:\n 📝\u0000 domain: 92 changes\n 📝\u0000 country: 76 changes\n 📝\u0000 hubspot_owner_id: 95 changes\n 📝\u0000 name: 86 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2007\n Properties:\n 📝\u0000 lastname: 242 changes\n 📝\u0000 email: 223 changes\n 📝\u0000 firstname: 244 changes\n 📝\u0000 associatedcompanyid: 286 changes\n 📝\u0000 phone: 235 changes\n 📝\u0000 hubspot_owner_id: 358 changes\n 📝\u0000 jobtitle: 236 changes\n 📝\u0000 mobilephone: 183 changes\n\n 🔔\u0000 Event: creation\n Count: 244\n\n 🔔\u0000 Event: association_change\n Count: 673\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 forecast_probability: 12 changes\n 📝\u0000 probability_justification: 12 changes\n 📝\u0000 metrics: 4 changes\n 📝\u0000 paper_process: 2 changes\n 📝\u0000 competition: 2 changes\n 📝\u0000 amount: 3 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 economic_buyer: 2 changes\n 📝\u0000 decision_criteria: 2 changes\n 📝\u0000 decision_process: 2 changes\n 📝\u0000 identify_pain: 2 changes\n 📝\u0000 champion: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 1065 (Integrum ESG - 1126), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1065 (Integrum ESG - 1126)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 48\n Properties:\n 📝\u0000 jobtitle: 13 changes\n 📝\u0000 lastname: 4 changes\n 📝\u0000 firstname: 4 changes\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 email: 3 changes\n 📝\u0000 associatedcompanyid: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 18\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 closedate: 2 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 14\n\n\n INFO Looking for metrics: Config 680 (The Family Office Company - 700), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 680 (The Family Office Company - 700)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 lastname: 1 changes\n 📝\u0000 firstname: 1 changes\n\n\n INFO Looking for metrics: Config 550 (SeedLegals - 576), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 550 (SeedLegals - 576)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 104\n Properties:\n 📝\u0000 country: 38 changes\n 📝\u0000 name: 38 changes\n 📝\u0000 hubspot_owner_id: 28 changes\n\n 🔔\u0000 Event: association_change\n Count: 155\n\n 🔔\u0000 Event: creation\n Count: 38\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 251\n\n 🔔\u0000 Event: association_change\n Count: 156\n\n 🔔\u0000 Event: property_change\n Count: 1110\n Properties:\n 📝\u0000 lastname: 236 changes\n 📝\u0000 email: 219 changes\n 📝\u0000 phone: 149 changes\n 📝\u0000 firstname: 250 changes\n 📝\u0000 mobilephone: 68 changes\n 📝\u0000 country: 26 changes\n 📝\u0000 associatedcompanyid: 42 changes\n 📝\u0000 hubspot_owner_id: 120 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 285\n Properties:\n 📝\u0000 hs_deal_stage_probability: 116 changes\n 📝\u0000 hubspot_owner_id: 22 changes\n 📝\u0000 amount: 16 changes\n 📝\u0000 closedate: 45 changes\n 📝\u0000 dealstage: 77 changes\n 📝\u0000 deal_currency_code: 9 changes\n\n 🔔\u0000 Event: creation\n Count: 40\n\n 🔔\u0000 Event: association_change\n Count: 105\n\n\n INFO Looking for metrics: Config 339 (Rosterfy - 359), Date 2026-04-16. \n\n^C\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
-5103325045311287
|
7542071614373235573
|
visual_change
|
accessibility
|
NULL
|
📝 email: 117 changes
📝 lastname: 69 📝 email: 117 changes
📝 lastname: 69 changes
📝 firstname: 74 changes
📝 associatedcompanyid: 74 changes
📝 hubspot_owner_id: 156 changes
📝 jobtitle: 28 changes
📝 country: 22 changes
📝 phone: 18 changes
📝 mobilephone: 16 changes
📦 Object Type: company
🔔 Event: creation
Count: 21
🔔 Event: property_change
Count: 78
Properties:
📝 domain: 22 changes
📝 name: 23 changes
📝 hubspot_owner_id: 27 changes
📝 phone: 3 changes
📝 industry: 1 changes
📝 country: 2 changes
🔔 Event: association_change
Count: 167
📦 Object Type: deal
🔔 Event: association_change
Count: 18
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 49
Properties:
📝 dealstage: 13 changes
📝 hs_deal_stage_probability: 18 changes
📝 hs_manual_forecast_category: 10 changes
📝 hubspot_owner_id: 2 changes
📝 hs_next_step: 1 changes
📝 amount: 2 changes
📝 closedate: 3 changes
INFO Looking for metrics: Config 1015 (Travefy - 1049), Date 2026-04-16.
📊 Webhook Metrics for Config 1015 (Travefy - 1049)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 1064
Properties:
📝 firstname: 194 changes
📝 phone: 141 changes
📝 email: 156 changes
📝 lastname: 171 changes
📝 associatedcompanyid: 156 changes
📝 hubspot_owner_id: 228 changes
📝 jobtitle: 11 changes
📝 mobilephone: 5 changes
📝 country: 2 changes
🔔 Event: creation
Count: 154
🔔 Event: association_change
Count: 411
📦 Object Type: deal
🔔 Event: property_change
Count: 1072
Properties:
📝 deal_currency_code: 98 changes
📝 amount: 108 changes
📝 hs_deal_stage_probability: 262 changes
📝 hs_manual_forecast_category: 217 changes
📝 hubspot_owner_id: 107 changes
📝 closedate: 109 changes
📝 dealstage: 163 changes
📝 seats_interest: 2 changes
📝 pipeline: 5 changes
📝 competitor_deal: 1 changes
🔔 Event: creation
Count: 99
🔔 Event: association_change
Count: 297
📦 Object Type: company
🔔 Event: creation
Count: 151
🔔 Event: association_change
Count: 510
🔔 Event: property_change
Count: 263
Properties:
📝 name: 171 changes
📝 hubspot_owner_id: 92 changes
INFO Looking for metrics: Config 413 (VCC - 347), Date 2026-04-16.
📊 Webhook Metrics for Config 413 (VCC - 347)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: property_change
Count: 10
Properties:
📝 closedate: 3 changes
📝 amount: 1 changes
📝 dealstage: 2 changes
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
🔔 Event: association_change
Count: 1
📦 Object Type: contact
🔔 Event: property_change
Count: 12
Properties:
📝 email: 1 changes
📝 hubspot_owner_id: 2 changes
📝 associatedcompanyid: 1 changes
📝 phone: 1 changes
📝 jobtitle: 3 changes
📝 country: 1 changes
📝 lastname: 1 changes
📝 mobilephone: 1 changes
📝 firstname: 1 changes
🔔 Event: association_change
Count: 2
🔔 Event: creation
Count: 1
📦 Object Type: company
🔔 Event: association_change
Count: 3
🔔 Event: property_change
Count: 18
Properties:
📝 name: 9 changes
📝 domain: 9 changes
🔔 Event: creation
Count: 9
INFO Looking for metrics: Config 591 (Data & AI Literacy Academy - 615), Date 2026-04-16.
📊 Webhook Metrics for Config 591 (Data & AI Literacy Academy - 615)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 30
Properties:
📝 hubspot_owner_id: 16 changes
📝 name: 7 changes
📝 domain: 7 changes
🔔 Event: association_change
Count: 122
🔔 Event: creation
Count: 8
📦 Object Type: deal
🔔 Event: property_change
Count: 34
Properties:
📝 amount: 1 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 10 changes
📝 dealstage: 6 changes
📝 hs_deal_stage_probability: 6 changes
📝 hs_manual_forecast_category: 9 changes
📦 Object Type: contact
🔔 Event: creation
Count: 39
🔔 Event: association_change
Count: 122
🔔 Event: property_change
Count: 306
Properties:
📝 jobtitle: 29 changes
📝 hubspot_owner_id: 70 changes
📝 firstname: 36 changes
📝 lastname: 36 changes
📝 associatedcompanyid: 42 changes
📝 mobilephone: 27 changes
📝 email: 39 changes
📝 phone: 27 changes
INFO Looking for metrics: Config 1031 (CUCollaborate - 1096), Date 2026-04-16.
📊 Webhook Metrics for Config 1031 (CUCollaborate - 1096)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 9
🔔 Event: property_change
Count: 100
Properties:
📝 country: 12 changes
📝 jobtitle: 16 changes
📝 phone: 10 changes
📝 email: 14 changes
📝 hubspot_owner_id: 15 changes
📝 lastname: 8 changes
📝 firstname: 9 changes
📝 associatedcompanyid: 9 changes
📝 mobilephone: 7 changes
🔔 Event: association_change
Count: 24
📦 Object Type: deal
🔔 Event: creation
Count: 5
🔔 Event: association_change
Count: 16
🔔 Event: property_change
Count: 47
Properties:
📝 dealstage: 7 changes
📝 hs_deal_stage_probability: 12 changes
📝 closedate: 9 changes
📝 hs_manual_forecast_category: 10 changes
📝 dealname: 3 changes
📝 deal_currency_code: 1 changes
📝 amount: 2 changes
📝 hs_next_step: 2 changes
📝 hubspot_owner_id: 1 changes
📦 Object Type: company
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 12
Properties:
📝 country: 2 changes
📝 domain: 2 changes
📝 industry: 2 changes
📝 phone: 2 changes
📝 name: 2 changes
📝 hubspot_owner_id: 2 changes
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 1025 (Predictiv - 1092), Date 2026-04-16.
📊 Webhook Metrics for Config 1025 (Predictiv - 1092)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 5
Properties:
📝 domain: 2 changes
📝 name: 2 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: association_change
Count: 6
🔔 Event: creation
Count: 2
📦 Object Type: contact
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 17
Properties:
📝 email: 3 changes
📝 phone: 2 changes
📝 associatedcompanyid: 3 changes
📝 hubspot_owner_id: 2 changes
📝 country: 2 changes
📝 firstname: 2 changes
📝 lastname: 2 changes
📝 jobtitle: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 1051 (IndySoft - 1115), Date 2026-04-16.
📊 Webhook Metrics for Config 1051 (IndySoft - 1115)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 29
🔔 Event: property_change
Count: 11
Properties:
📝 domain: 4 changes
📝 name: 2 changes
📝 phone: 1 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 hubspot_owner_id: 2 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 17
Properties:
📝 dealstage: 3 changes
📝 hs_deal_stage_probability: 4 changes
📝 hs_manual_forecast_category: 3 changes
📝 deal_currency_code: 1 changes
📝 amount: 4 changes
📝 closedate: 2 changes
🔔 Event: association_change
Count: 3
🔔 Event: creation
Count: 1
📦 Object Type: contact
🔔 Event: property_change
Count: 64
Properties:
📝 associatedcompanyid: 10 changes
📝 email: 7 changes
📝 lastname: 11 changes
📝 firstname: 11 changes
📝 mobilephone: 1 changes
📝 phone: 9 changes
📝 jobtitle: 7 changes
📝 hubspot_owner_id: 8 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 966 (Crowdcube Ltd - 263), Date 2026-04-16.
📊 Webhook Metrics for Config 966 (Crowdcube Ltd - 263)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 204
Properties:
📝 amount: 6 changes
📝 amount_in_home_currency: 6 changes
📝 dealstage: 46 changes
📝 hs_deal_stage_probability: 53 changes
📝 hs_manual_forecast_category: 52 changes
📝 closedate: 40 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: association_change
Count: 39
📦 Object Type: contact
🔔 Event: property_change
Count: 126
Properties:
📝 phone: 5 changes
📝 firstname: 19 changes
📝 lastname: 17 changes
📝 hubspot_owner_id: 27 changes
📝 email: 20 changes
📝 associatedcompanyid: 16 changes
📝 country: 8 changes
📝 jobtitle: 13 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 22
🔔 Event: association_change
Count: 45
📦 Object Type: company
🔔 Event: property_change
Count: 61
Properties:
📝 domain: 13 changes
📝 name: 12 changes
📝 industry: 8 changes
📝 phone: 6 changes
📝 hubspot_owner_id: 16 changes
📝 country: 6 changes
🔔 Event: association_change
Count: 58
🔔 Event: creation
Count: 13
INFO Looking for metrics: Config 300 (Prowly - 318), Date 2026-04-16.
📊 Webhook Metrics for Config 300 (Prowly - 318)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 66
🔔 Event: property_change
Count: 26
Properties:
📝 hubspot_owner_id: 3 changes
📝 domain: 10 changes
📝 name: 10 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 phone: 1 changes
📦 Object Type: contact
🔔 Event: creation
Count: 33
🔔 Event: association_change
Count: 55
🔔 Event: property_change
Count: 114
Properties:
📝 firstname: 23 changes
📝 email: 33 changes
📝 lastname: 9 changes
📝 country: 9 changes
📝 associatedcompanyid: 21 changes
📝 hubspot_owner_id: 15 changes
📝 phone: 2 changes
📝 jobtitle: 2 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 80
Properties:
📝 pipeline: 2 changes
📝 dealstage: 10 changes
📝 amount: 20 changes
📝 dealname: 2 changes
📝 closedate: 15 changes
📝 hs_deal_stage_probability: 16 changes
📝 deal_currency_code: 8 changes
📝 dealtype: 5 changes
📝 hubspot_owner_id: 2 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 37
INFO Looking for metrics: Config 265 (Orbital - 283), Date 2026-04-16.
📊 Webhook Metrics for Config 265 (Orbital - 283)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: property_change
Count: 207
Properties:
📝 deal_risk: 62 changes
📝 deal_probability: 29 changes
📝 competitors_summary: 42 changes
📝 closure_forecast: 33 changes
📝 competitors: 12 changes
📝 hs_deal_stage_probability: 5 changes
📝 dealstage: 7 changes
📝 deal_risk_dropdown: 6 changes
📝 amount: 10 changes
📝 hs_next_step: 1 changes
🔔 Event: association_change
Count: 45
📦 Object Type: company
🔔 Event: property_change
Count: 48
Properties:
📝 industry: 21 changes
📝 domain: 11 changes
📝 name: 9 changes
📝 hubspot_owner_id: 3 changes
📝 country: 2 changes
📝 phone: 2 changes
🔔 Event: creation
Count: 11
🔔 Event: association_change
Count: 862
📦 Object Type: contact
🔔 Event: property_change
Count: 1151
Properties:
📝 hubspot_owner_id: 136 changes
📝 phone: 112 changes
📝 country: 131 changes
📝 lastname: 131 changes
📝 email: 118 changes
📝 associatedcompanyid: 261 changes
📝 firstname: 131 changes
📝 jobtitle: 125 changes
📝 mobilephone: 6 changes
🔔 Event: creation
Count: 134
🔔 Event: association_change
Count: 839
INFO Looking for metrics: Config 104 (Just Eat for Business - 111), Date 2026-04-16.
📊 Webhook Metrics for Config 104 (Just Eat for Business - 111)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 35
Properties:
📝 name: 11 changes
📝 hubspot_owner_id: 18 changes
📝 domain: 6 changes
🔔 Event: association_change
Count: 98
🔔 Event: creation
Count: 8
📦 Object Type: deal
🔔 Event: creation
Count: 11
🔔 Event: association_change
Count: 27
🔔 Event: property_change
Count: 21
Properties:
📝 hs_deal_stage_probability: 12 changes
📝 hubspot_owner_id: 4 changes
📝 dealstage: 1 changes
📝 hs_manual_forecast_category: 2 changes
📝 closedate: 2 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 797
Properties:
📝 firstname: 147 changes
📝 email: 172 changes
📝 phone: 238 changes
📝 lastname: 148 changes
📝 associatedcompanyid: 38 changes
📝 hubspot_owner_id: 42 changes
📝 jobtitle: 9 changes
📝 mobilephone: 2 changes
📝 country: 1 changes
🔔 Event: creation
Count: 52
🔔 Event: association_change
Count: 89
INFO Looking for metrics: Config 1062 (Sigma Labs - 1124), Date 2026-04-16.
📊 Webhook Metrics for Config 1062 (Sigma Labs - 1124)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 38
Properties:
📝 mobilephone: 1 changes
📝 firstname: 4 changes
📝 jobtitle: 3 changes
📝 lastname: 4 changes
📝 email: 10 changes
📝 hubspot_owner_id: 8 changes
📝 associatedcompanyid: 5 changes
📝 phone: 1 changes
📝 country: 2 changes
🔔 Event: association_change
Count: 10
🔔 Event: creation
Count: 6
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 5
Properties:
📝 country: 1 changes
📝 name: 1 changes
📝 phone: 1 changes
📝 industry: 1 changes
📝 domain: 1 changes
🔔 Event: association_change
Count: 10
INFO Looking for metrics: Config 949 (Truvi - 1023), Date 2026-04-16.
📊 Webhook Metrics for Config 949 (Truvi - 1023)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 967
🔔 Event: property_change
Count: 287
Properties:
📝 lastname: 47 changes
📝 email: 75 changes
📝 firstname: 55 changes
📝 hubspot_owner_id: 57 changes
📝 associatedcompanyid: 27 changes
📝 phone: 12 changes
📝 jobtitle: 8 changes
📝 country: 5 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 81
📦 Object Type: deal
🔔 Event: creation
Count: 18
🔔 Event: association_change
Count: 1278
🔔 Event: property_change
Count: 526
Properties:
📝 hs_deal_stage_probability: 262 changes
📝 dealstage: 247 changes
📝 closedate: 11 changes
📝 dealname: 2 changes
📝 deal_currency_code: 2 changes
📝 createdate: 1 changes
📝 pipeline: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 451
🔔 Event: property_change
Count: 68
Properties:
📝 name: 34 changes
📝 domain: 28 changes
📝 hubspot_owner_id: 6 changes
🔔 Event: creation
Count: 37
INFO Looking for metrics: Config 945 (Shinydocs - 1019), Date 2026-04-16.
📊 Webhook Metrics for Config 945 (Shinydocs - 1019)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: association_change
Count: 7
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 23
Properties:
📝 dealstage: 8 changes
📝 hs_deal_stage_probability: 9 changes
📝 pipeline: 1 changes
📝 closedate: 1 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
📝 amount_in_home_currency: 2 changes
📦 Object Type: contact
🔔 Event: association_change
Count: 11
🔔 Event: property_change
Count: 14
Properties:
📝 email: 3 changes
📝 hubspot_owner_id: 6 changes
📝 associatedcompanyid: 3 changes
📝 lastname: 1 changes
📝 firstname: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 959 (Voyager - 1031), Date 2026-04-16.
📊 Webhook Metrics for Config 959 (Voyager - 1031)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 8
Properties:
📝 domain: 5 changes
📝 hubspot_owner_id: 1 changes
📝 name: 1 changes
📝 industry: 1 changes
🔔 Event: association_change
Count: 22
📦 Object Type: deal
🔔 Event: property_change
Count: 1
Properties:
📝 amount: 1 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 82
Properties:
📝 hubspot_owner_id: 7 changes
📝 email: 13 changes
📝 jobtitle: 7 changes
📝 firstname: 16 changes
📝 lastname: 17 changes
📝 country: 3 changes
📝 associatedcompanyid: 11 changes
📝 mobilephone: 1 changes
📝 phone: 7 changes
🔔 Event: association_change
Count: 22
🔔 Event: creation
Count: 11
INFO Looking for metrics: Config 1045 (Cove - 1110), Date 2026-04-16.
📊 Webhook Metrics for Config 1045 (Cove - 1110)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 92
🔔 Event: association_change
Count: 676
🔔 Event: property_change
Count: 349
Properties:
📝 domain: 92 changes
📝 country: 76 changes
📝 hubspot_owner_id: 95 changes
📝 name: 86 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 2007
Properties:
📝 lastname: 242 changes
📝 email: 223 changes
📝 firstname: 244 changes
📝 associatedcompanyid: 286 changes
📝 phone: 235 changes
📝 hubspot_owner_id: 358 changes
📝 jobtitle: 236 changes
📝 mobilephone: 183 changes
🔔 Event: creation
Count: 244
🔔 Event: association_change
Count: 673
📦 Object Type: deal
🔔 Event: property_change
Count: 49
Properties:
📝 forecast_probability: 12 changes
📝 probability_justification: 12 changes
📝 metrics: 4 changes
📝 paper_process: 2 changes
📝 competition: 2 changes
📝 amount: 3 changes
📝 hs_deal_stage_probability: 3 changes
📝 deal_currency_code: 1 changes
📝 economic_buyer: 2 changes
📝 decision_criteria: 2 changes
📝 decision_process: 2 changes
📝 identify_pain: 2 changes
📝 champion: 2 changes
🔔 Event: association_change
Count: 9
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 1065 (Integrum ESG - 1126), Date 2026-04-16.
📊 Webhook Metrics for Config 1065 (Integrum ESG - 1126)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 48
Properties:
📝 jobtitle: 13 changes
📝 lastname: 4 changes
📝 firstname: 4 changes
📝 hubspot_owner_id: 16 changes
📝 phone: 5 changes
📝 email: 3 changes
📝 associatedcompanyid: 3 changes
🔔 Event: association_change
Count: 18
🔔 Event: creation
Count: 3
📦 Object Type: company
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 5
Properties:
📝 closedate: 2 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 2 changes
🔔 Event: association_change
Count: 14
INFO Looking for metrics: Config 680 (The Family Office Company - 700), Date 2026-04-16.
📊 Webhook Metrics for Config 680 (The Family Office Company - 700)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 2
Properties:
📝 lastname: 1 changes
📝 firstname: 1 changes
INFO Looking for metrics: Config 550 (SeedLegals - 576), Date 2026-04-16.
📊 Webhook Metrics for Config 550 (SeedLegals - 576)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 104
Properties:
📝 country: 38 changes
📝 name: 38 changes
📝 hubspot_owner_id: 28 changes
🔔 Event: association_change
Count: 155
🔔 Event: creation
Count: 38
📦 Object Type: contact
🔔 Event: creation
Count: 251
🔔 Event: association_change
Count: 156
🔔 Event: property_change
Count: 1110
Properties:
📝 lastname: 236 changes
📝 email: 219 changes
📝 phone: 149 changes
📝 firstname: 250 changes
📝 mobilephone: 68 changes
📝 country: 26 changes
📝 associatedcompanyid: 42 changes
📝 hubspot_owner_id: 120 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 285
Properties:
📝 hs_deal_stage_probability: 116 changes
📝 hubspot_owner_id: 22 changes
📝 amount: 16 changes
📝 closedate: 45 changes
📝 dealstage: 77 changes
📝 deal_currency_code: 9 changes
🔔 Event: creation
Count: 40
🔔 Event: association_change
Count: 105
INFO Looking for metrics: Config 339 (Rosterfy - 359), Date 2026-04-16.
^C
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
69505
|
|
69494
|
1599
|
0
|
2026-04-22T08:12:13.396485+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845533396_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
📝 dealstage: 3 changes
📝 hs_deal_sta 📝 dealstage: 3 changes
📝 hs_deal_stage_probability: 6 changes
📝 service_type_updated: 2 changes
📝 hs_next_step: 2 changes
📝 closedate: 1 changes
📝 days_to_close: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 716 (Terpene Belt Farms - 737), Date 2026-04-16.
📊 Webhook Metrics for Config 716 (Terpene Belt Farms - 737)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 72
Properties:
📝 phone: 8 changes
📝 email: 7 changes
📝 country: 16 changes
📝 lastname: 12 changes
📝 firstname: 10 changes
📝 mobilephone: 3 changes
📝 hubspot_owner_id: 5 changes
📝 jobtitle: 9 changes
📝 associatedcompanyid: 2 changes
🔔 Event: association_change
Count: 27
🔔 Event: creation
Count: 7
📦 Object Type: deal
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 47
🔔 Event: property_change
Count: 79
Properties:
📝 hs_deal_stage_probability: 24 changes
📝 deal_currency_code: 6 changes
📝 amount: 13 changes
📝 closedate: 9 changes
📝 dealstage: 18 changes
📝 pipeline: 3 changes
📝 dealname: 3 changes
📝 hubspot_owner_id: 3 changes
📦 Object Type: company
🔔 Event: property_change
Count: 5
Properties:
📝 hubspot_owner_id: 1 changes
📝 name: 3 changes
📝 country: 1 changes
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 921 (Matrak - 968), Date 2026-04-16.
📊 Webhook Metrics for Config 921 (Matrak - 968)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 17
Properties:
📝 hubspot_owner_id: 6 changes
📝 email: 3 changes
📝 associatedcompanyid: 4 changes
📝 phone: 1 changes
📝 jobtitle: 1 changes
📝 lastname: 1 changes
📝 firstname: 1 changes
🔔 Event: creation
Count: 3
🔔 Event: association_change
Count: 8
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 2
Properties:
📝 name: 1 changes
📝 domain: 1 changes
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: property_change
Count: 5
Properties:
📝 hubspot_owner_id: 4 changes
📝 amount: 1 changes
INFO Looking for metrics: Config 1054 (Temelio - 1118), Date 2026-04-16.
📊 Webhook Metrics for Config 1054 (Temelio - 1118)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 80
Properties:
📝 hs_next_step: 2 changes
📝 dealstage: 15 changes
📝 hs_manual_forecast_category: 12 changes
📝 hubspot_owner_id: 1 changes
📝 amount: 2 changes
📝 closedate: 35 changes
📝 hs_deal_stage_probability: 13 changes
🔔 Event: association_change
Count: 85
📦 Object Type: contact
🔔 Event: association_change
Count: 7838
🔔 Event: property_change
Count: 1938
Properties:
📝 associatedcompanyid: 1828 changes
📝 phone: 5 changes
📝 lastname: 6 changes
📝 email: 9 changes
📝 jobtitle: 7 changes
📝 firstname: 7 changes
📝 hubspot_owner_id: 76 changes
🔔 Event: creation
Count: 15
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 1609
Properties:
📝 domain: 72 changes
📝 name: 6 changes
📝 hubspot_owner_id: 1047 changes
📝 phone: 431 changes
📝 country: 7 changes
📝 industry: 46 changes
🔔 Event: association_change
Count: 7911
INFO Looking for metrics: Config 1060 (Velatir - 1122), Date 2026-04-16.
📊 Webhook Metrics for Config 1060 (Velatir - 1122)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 205
Properties:
📝 email: 49 changes
📝 hubspot_owner_id: 64 changes
📝 firstname: 15 changes
📝 lastname: 14 changes
📝 associatedcompanyid: 50 changes
📝 phone: 5 changes
📝 jobtitle: 5 changes
📝 country: 3 changes
🔔 Event: creation
Count: 50
🔔 Event: association_change
Count: 114
📦 Object Type: company
🔔 Event: creation
Count: 21
🔔 Event: property_change
Count: 496
Properties:
📝 phone: 198 changes
📝 domain: 24 changes
📝 country: 18 changes
📝 name: 18 changes
📝 industry: 13 changes
📝 hubspot_owner_id: 225 changes
🔔 Event: association_change
Count: 126
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 55
Properties:
📝 hs_deal_stage_probability: 18 changes
📝 deal_currency_code: 8 changes
📝 amount: 10 changes
📝 hubspot_owner_id: 6 changes
📝 dealtype: 3 changes
📝 dealname: 4 changes
📝 dealstage: 6 changes
🔔 Event: association_change
Count: 36
INFO Looking for metrics: Config 272 (Bonham & Brook - 290), Date 2026-04-16.
📊 Webhook Metrics for Config 272 (Bonham & Brook - 290)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 33
🔔 Event: association_change
Count: 212
🔔 Event: property_change
Count: 221
Properties:
📝 hubspot_owner_id: 58 changes
📝 country: 33 changes
📝 name: 36 changes
📝 domain: 33 changes
📝 phone: 34 changes
📝 industry: 27 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 571
Properties:
📝 notes_last_updated: 323 changes
📝 notes_last_contacted: 193 changes
📝 hs_deal_stage_probability: 21 changes
📝 dealstage: 13 changes
📝 amount: 8 changes
📝 dealname: 8 changes
📝 hs_manual_forecast_category: 3 changes
📝 closedate: 1 changes
📝 pipeline: 1 changes
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 31
📦 Object Type: contact
🔔 Event: property_change
Count: 580
Properties:
📝 country: 42 changes
📝 mobilephone: 25 changes
📝 jobtitle: 66 changes
📝 phone: 69 changes
📝 email: 70 changes
📝 hubspot_owner_id: 100 changes
📝 firstname: 66 changes
📝 lastname: 65 changes
📝 associatedcompanyid: 77 changes
🔔 Event: association_change
Count: 195
🔔 Event: creation
Count: 71
INFO Looking for metrics: Config 989 (rtaoutdoor.com - 1058), Date 2026-04-16.
📊 Webhook Metrics for Config 989 (rtaoutdoor.com - 1058)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 413
🔔 Event: association_change
Count: 235
🔔 Event: property_change
Count: 1375
Properties:
📝 email: 414 changes
📝 hubspot_owner_id: 453 changes
📝 lastname: 94 changes
📝 firstname: 94 changes
📝 phone: 257 changes
📝 jobtitle: 8 changes
📝 associatedcompanyid: 52 changes
📝 mobilephone: 2 changes
📝 country: 1 changes
📦 Object Type: company
🔔 Event: creation
Count: 58
🔔 Event: association_change
Count: 224
🔔 Event: property_change
Count: 116
Properties:
📝 hubspot_owner_id: 58 changes
📝 name: 58 changes
📦 Object Type: deal
🔔 Event: creation
Count: 116
🔔 Event: property_change
Count: 1053
Properties:
📝 hs_deal_stage_probability: 269 changes
📝 hubspot_owner_id: 161 changes
📝 amount: 120 changes
📝 amount_in_home_currency: 120 changes
📝 closedate: 105 changes
📝 dealstage: 190 changes
📝 amount_stamp___stage_deposit_received: 16 changes
📝 deal_currency_code: 68 changes
📝 dealname: 3 changes
📝 pipeline: 1 changes
🔔 Event: association_change
Count: 243
INFO Looking for metrics: Config 64 (SalaryFinance - 70), Date 2026-04-16.
📊 Webhook Metrics for Config 64 (SalaryFinance - 70)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 11
Properties:
📝 hubspot_owner_id: 5 changes
📝 domain: 2 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 name: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 92
📦 Object Type: deal
🔔 Event: property_change
Count: 3
Properties:
📝 closedate: 1 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
🔔 Event: association_change
Count: 4
📦 Object Type: contact
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 181
Properties:
📝 email: 16 changes
📝 associatedcompanyid: 13 changes
📝 country: 11 changes
📝 hubspot_owner_id: 117 changes
📝 firstname: 8 changes
📝 jobtitle: 8 changes
📝 lastname: 8 changes
🔔 Event: association_change
Count: 96
INFO Looking for metrics: Config 1056 (Chromatic - 1119), Date 2026-04-16.
📊 Webhook Metrics for Config 1056 (Chromatic - 1119)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 445
🔔 Event: property_change
Count: 2421
Properties:
📝 email: 438 changes
📝 associatedcompanyid: 405 changes
📝 jobtitle: 760 changes
📝 firstname: 423 changes
📝 lastname: 320 changes
📝 hubspot_owner_id: 66 changes
📝 country: 2 changes
📝 phone: 3 changes
📝 hs_avatar_filemanager_key: 3 changes
📝 mobilephone: 1 changes
🔔 Event: association_change
Count: 841
📦 Object Type: deal
🔔 Event: property_change
Count: 94
Properties:
📝 dealstage: 11 changes
📝 hs_deal_stage_probability: 15 changes
📝 closedate: 16 changes
📝 hs_manual_forecast_category: 13 changes
📝 hs_next_step: 20 changes
📝 amount: 5 changes
📝 dealname: 7 changes
📝 hubspot_owner_id: 2 changes
📝 dealtype: 3 changes
📝 createdate: 2 changes
🔔 Event: creation
Count: 4
🔔 Event: association_change
Count: 13
📦 Object Type: company
🔔 Event: association_change
Count: 844
🔔 Event: property_change
Count: 202
Properties:
📝 country: 54 changes
📝 hubspot_owner_id: 47 changes
📝 domain: 57 changes
📝 name: 43 changes
📝 industry: 1 changes
🔔 Event: creation
Count: 57
INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16.
📊 Webhook Metrics for Config 533 (Connectd - 559)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 720
🔔 Event: property_change
Count: 3906
Properties:
📝 mobilephone: 15 changes
📝 lastname: 766 changes
📝 phone: 699 changes
📝 firstname: 773 changes
📝 email: 725 changes
📝 hubspot_owner_id: 757 changes
📝 jobtitle: 99 changes
📝 country: 72 changes
🔔 Event: association_change
Count: 864
📦 Object Type: deal
🔔 Event: property_change
Count: 3984
Properties:
📝 hs_deal_stage_probability: 1843 changes
📝 dealstage: 1316 changes
📝 closedate: 612 changes
📝 createdate: 7 changes
📝 hubspot_owner_id: 134 changes
📝 amount: 23 changes
📝 amount_in_home_currency: 30 changes
📝 dealname: 15 changes
📝 deal_currency_code: 3 changes
📝 pipeline: 1 changes
🔔 Event: association_change
Count: 780
🔔 Event: creation
Count: 648
📦 Object Type: company
🔔 Event: association_change
Count: 88
INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16.
📊 Webhook Metrics for Config 1006 (Dovetail Software - 1076)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 9
Properties:
📝 hs_manual_forecast_category: 2 changes
📝 hs_deal_stage_probability: 3 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
🔔 Event: creation
Count: 2
📦 Object Type: contact
🔔 Event: property_change
Count: 167
Properties:
📝 associatedcompanyid: 11 changes
📝 lastname: 11 changes
📝 phone: 11 changes
📝 hubspot_owner_id: 83 changes
📝 mobilephone: 9 changes
📝 firstname: 10 changes
📝 country: 13 changes
📝 email: 9 changes
📝 jobtitle: 10 changes
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 25
📦 Object Type: company
🔔 Event: association_change
Count: 27
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 14
Properties:
📝 hubspot_owner_id: 7 changes
📝 phone: 2 changes
📝 name: 1 changes
📝 country: 2 changes
📝 industry: 1 changes
📝 domain: 1 changes
INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16.
📊 Webhook Metrics for Config 154 (Learnerbly - 172)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 2
Properties:
📝 hubspot_owner_id: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 4
📦 Object Type: company
🔔 Event: association_change
Count: 4
📦 Object Type: deal
🔔 Event: property_change
Count: 3
Properties:
📝 amount: 1 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16.
📊 Webhook Metrics for Config 892 (Logiwa - 942)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 55
🔔 Event: property_change
Count: 322
Properties:
📝 jobtitle: 56 changes
📝 lastname: 57 changes
📝 firstname: 59 changes
📝 country: 4 changes
📝 email: 55 changes
📝 hubspot_owner_id: 38 changes
📝 associatedcompanyid: 47 changes
📝 phone: 6 changes
🔔 Event: association_change
Count: 96
📦 Object Type: company
🔔 Event: creation
Count: 16
🔔 Event: property_change
Count: 42
Properties:
📝 name: 21 changes
📝 domain: 16 changes
📝 hubspot_owner_id: 5 changes
🔔 Event: association_change
Count: 96
📦 Object Type: deal
🔔 Event: property_change
Count: 151
Properties:
📝 notes_last_updated: 139 changes
📝 closedate: 3 changes
📝 dealstage: 3 changes
📝 current_wms: 1 changes
📝 hs_deal_stage_probability: 3 changes
📝 amount: 1 changes
📝 hs_manual_forecast_category: 1 changes
INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16.
📊 Webhook Metrics for Config 882 (GoGlobal - 933)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 837
Properties:
📝 hs_next_step: 93 changes
📝 situation: 80 changes
📝 compelling_event: 76 changes
📝 decision_process: 72 changes
📝 decision_criteria: 76 changes
📝 problem: 50 changes
📝 impact: 50 changes
📝 amount: 73 changes
📝 amount_in_home_currency: 63 changes
📝 closedate: 19 changes
📝 dealstage: 39 changes
📝 description: 6 changes
📝 hs_deal_stage_probability: 51 changes
📝 dealname: 22 changes
📝 deal_currency_code: 24 changes
📝 hs_manual_forecast_category: 18 changes
📝 hiring_countries: 4 changes
📝 leadtype: 2 changes
📝 manager_forecast_notes: 10 changes
📝 competitors____please_specify: 1 changes
📝 closed_won_reason_jiminny_ai: 1 changes
📝 client_handover_notes_jiminny_ai: 1 changes
📝 lead_source_deal: 2 changes
📝 hubspot_owner_id: 4 changes
🔔 Event: association_change
Count: 48
📦 Object Type: company
🔔 Event: property_change
Count: 759
Properties:
📝 domain: 148 changes
📝 name: 140 changes
📝 country: 135 changes
📝 phone: 115 changes
📝 industry: 124 changes
📝 hubspot_owner_id: 97 changes
🔔 Event: creation
Count: 147
🔔 Event: association_change
Count: 1369
📦 Object Type: contact
🔔 Event: property_change
Count: 4203
Properties:
📝 lastname: 666 changes
📝 email: 600 changes
📝 hubspot_owner_id: 562 changes
📝 firstname: 608 changes
📝 jobtitle: 555 changes
📝 country: 585 changes
📝 associatedcompanyid: 585 changes
📝 phone: 31 changes
📝 mobilephone: 11 changes
🔔 Event: creation
Count: 600
🔔 Event: association_change
Count: 1349
INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16.
📊 Webhook Metrics for Config 797 (Kodex - 848)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 504
Properties:
📝 phone: 42 changes
📝 firstname: 48 changes
📝 email: 44 changes
📝 lastname: 50 changes
📝 associatedcompanyid: 138 changes
📝 jobtitle: 38 changes
📝 hubspot_owner_id: 103 changes
📝 mobilephone: 37 changes
📝 country: 4 changes
🔔 Event: creation
Count: 44
🔔 Event: association_change
Count: 623
📦 Object Type: company
🔔 Event: association_change
Count: 623
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 74
Properties:
📝 country: 8 changes
📝 name: 9 changes
📝 domain: 12 changes
📝 hubspot_owner_id: 30 changes
📝 industry: 8 changes
📝 phone: 7 changes
📦 Object Type: deal
🔔 Event: association_change
Count: 2
🔔 Event: property_change
Count: 4
Properties:
📝 amount: 1 changes
📝 hubspot_owner_id: 1 changes
📝 closedate: 1 changes
📝 dealname: 1 changes
INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16.
📊 Webhook Metrics for Config 636 (ProofPilot - 657)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 44
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 142
Properties:
📝 associatedcompanyid: 21 changes
📝 hubspot_owner_id: 24 changes
📝 jobtitle: 28 changes
📝 country: 14 changes
📝 lastname: 16 changes
📝 email: 14 changes
📝 phone: 8 changes
📝 firstname: 16 changes
📝 mobilephone: 1 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 8
Properties:
📝 dealtype: 1 changes
📝 amount: 2 changes
📝 closedate: 1 changes
📝 dealname: 2 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 44
INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16.
📊 Webhook Metrics for Config 1063 (Base.com - 1125)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 3464
🔔 Event: property_change
Count: 1320
Properties:
📝 name: 550 changes
📝 domain: 487 changes
📝 hubspot_owner_id: 157 changes
📝 phone: 35 changes
📝 country: 30 changes
📝 industry: 61 changes
🔔 Event: creation
Count: 604
📦 Object Type: contact
🔔 Event: property_change
Count: 8211
Properties:
📝 phone: 489 changes
📝 firstname: 1415 changes
📝 lastname: 1329 changes
📝 email: 1552 changes
📝 country: 400 changes
📝 associatedcompanyid: 1554 changes
📝 hubspot_owner_id: 428 changes
📝 jobtitle: 1026 changes
📝 mobilephone: 18 changes
🔔 Event: creation
Count: 1559
🔔 Event: association_change
Count: 3382
📦 Object Type: deal
🔔 Event: property_change
Count: 469
Properties:
📝 dealstage: 74 changes
📝 hs_deal_stage_probability: 112 changes
📝 closedate: 39 changes
📝 implementation_type: 9 changes
📝 deal_currency_code: 23 changes
📝 minimum_fee: 33 changes
📝 estimated_fulfilment_orders_per_month: 37 changes
📝 hubspot_owner_id: 8 changes
📝 dealtype: 2 changes
📝 amount: 26 changes
📝 monthly_orders_processed_by_base_with_normal_fee: 20 changes
📝 average_order_value: 18 changes
📝 estimated_orders_per_month: 9 changes
📝 dealname: 3 changes
📝 pipeline: 1 changes
📝 dor_principal_ia: 4 changes
📝 objecao_central_ia: 4 changes
📝 proximo_passo_ia: 4 changes
📝 resumo_da_reuniao_ia: 4 changes
📝 categoria_do_portfolio_ia: 3 changes
📝 perfil_comportamental_do_prospect_ia: 4 changes
📝 score_do_vendedor_ia: 4 changes
📝 temperatura_do_deal_ia: 4 changes
📝 nota_da_demo_ia: 4 changes
📝 analise_de_tecnicas_de_vendas_ia: 4 changes
📝 perfil_do_cliente_icp_ia: 4 changes
📝 erp: 8 changes
📝 hub_ia: 2 changes
📝 gap_de_funcionalidade_ia: 2 changes
🔔 Event: association_change
Count: 160
🔔 Event: creation
Count: 41
INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16.
📊 Webhook Metrics for Config 766 (Marsello - 781)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 22
🔔 Event: property_change
Count: 87
Properties:
📝 phone: 5 changes
📝 country: 11 changes
📝 domain: 13 changes
📝 industry: 8 changes
📝 name: 27 changes
📝 hubspot_owner_id: 23 changes
🔔 Event: association_change
Count: 203
📦 Object Type: contact
🔔 Event: property_change
Count: 337
Properties:
📝 jobtitle: 19 changes
📝 hubspot_owner_id: 35 changes
📝 email: 83 changes
📝 associatedcompanyid: 89 changes
📝 mobilephone: 16 changes
📝 phone: 14 changes
📝 country: 17 changes
📝 firstname: 33 changes
📝 lastname: 31 changes
🔔 Event: creation
Count: 24
🔔 Event: association_change
Count: 202
📦 Object Type: deal
🔔 Event: property_change
Count: 16
Properties:
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
📝 dealname: 2 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
📝 sites: 1 changes
📝 customers: 1 changes
📝 deal_icp: 1 changes
📝 integrations: 1 changes
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 3
INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"📝\u0000 dealstage: 3 changes\n 📝\u0000 hs_deal_stage_probability: 6 changes\n 📝\u0000 service_type_updated: 2 changes\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 days_to_close: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 716 (Terpene Belt Farms - 737), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 716 (Terpene Belt Farms - 737)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 72\n Properties:\n 📝\u0000 phone: 8 changes\n 📝\u0000 email: 7 changes\n 📝\u0000 country: 16 changes\n 📝\u0000 lastname: 12 changes\n 📝\u0000 firstname: 10 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 jobtitle: 9 changes\n 📝\u0000 associatedcompanyid: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: creation\n Count: 7\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 47\n\n 🔔\u0000 Event: property_change\n Count: 79\n Properties:\n 📝\u0000 hs_deal_stage_probability: 24 changes\n 📝\u0000 deal_currency_code: 6 changes\n 📝\u0000 amount: 13 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 dealstage: 18 changes\n 📝\u0000 pipeline: 3 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 hubspot_owner_id: 3 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 name: 3 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 921 (Matrak - 968), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 921 (Matrak - 968)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 email: 3 changes\n 📝\u0000 associatedcompanyid: 4 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 jobtitle: 1 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 name: 1 changes\n 📝\u0000 domain: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 amount: 1 changes\n\n\n INFO Looking for metrics: Config 1054 (Temelio - 1118), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1054 (Temelio - 1118)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 80\n Properties:\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 dealstage: 15 changes\n 📝\u0000 hs_manual_forecast_category: 12 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 35 changes\n 📝\u0000 hs_deal_stage_probability: 13 changes\n\n 🔔\u0000 Event: association_change\n Count: 85\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 7838\n\n 🔔\u0000 Event: property_change\n Count: 1938\n Properties:\n 📝\u0000 associatedcompanyid: 1828 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 lastname: 6 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 firstname: 7 changes\n 📝\u0000 hubspot_owner_id: 76 changes\n\n 🔔\u0000 Event: creation\n Count: 15\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 1609\n Properties:\n 📝\u0000 domain: 72 changes\n 📝\u0000 name: 6 changes\n 📝\u0000 hubspot_owner_id: 1047 changes\n 📝\u0000 phone: 431 changes\n 📝\u0000 country: 7 changes\n 📝\u0000 industry: 46 changes\n\n 🔔\u0000 Event: association_change\n Count: 7911\n\n\n INFO Looking for metrics: Config 1060 (Velatir - 1122), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1060 (Velatir - 1122)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 205\n Properties:\n 📝\u0000 email: 49 changes\n 📝\u0000 hubspot_owner_id: 64 changes\n 📝\u0000 firstname: 15 changes\n 📝\u0000 lastname: 14 changes\n 📝\u0000 associatedcompanyid: 50 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 jobtitle: 5 changes\n 📝\u0000 country: 3 changes\n\n 🔔\u0000 Event: creation\n Count: 50\n\n 🔔\u0000 Event: association_change\n Count: 114\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 21\n\n 🔔\u0000 Event: property_change\n Count: 496\n Properties:\n 📝\u0000 phone: 198 changes\n 📝\u0000 domain: 24 changes\n 📝\u0000 country: 18 changes\n 📝\u0000 name: 18 changes\n 📝\u0000 industry: 13 changes\n 📝\u0000 hubspot_owner_id: 225 changes\n\n 🔔\u0000 Event: association_change\n Count: 126\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 55\n Properties:\n 📝\u0000 hs_deal_stage_probability: 18 changes\n 📝\u0000 deal_currency_code: 8 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 dealname: 4 changes\n 📝\u0000 dealstage: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 36\n\n\n INFO Looking for metrics: Config 272 (Bonham & Brook - 290), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 272 (Bonham & Brook - 290)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 33\n\n 🔔\u0000 Event: association_change\n Count: 212\n\n 🔔\u0000 Event: property_change\n Count: 221\n Properties:\n 📝\u0000 hubspot_owner_id: 58 changes\n 📝\u0000 country: 33 changes\n 📝\u0000 name: 36 changes\n 📝\u0000 domain: 33 changes\n 📝\u0000 phone: 34 changes\n 📝\u0000 industry: 27 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 571\n Properties:\n 📝\u0000 notes_last_updated: 323 changes\n 📝\u0000 notes_last_contacted: 193 changes\n 📝\u0000 hs_deal_stage_probability: 21 changes\n 📝\u0000 dealstage: 13 changes\n 📝\u0000 amount: 8 changes\n 📝\u0000 dealname: 8 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 31\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 580\n Properties:\n 📝\u0000 country: 42 changes\n 📝\u0000 mobilephone: 25 changes\n 📝\u0000 jobtitle: 66 changes\n 📝\u0000 phone: 69 changes\n 📝\u0000 email: 70 changes\n 📝\u0000 hubspot_owner_id: 100 changes\n 📝\u0000 firstname: 66 changes\n 📝\u0000 lastname: 65 changes\n 📝\u0000 associatedcompanyid: 77 changes\n\n 🔔\u0000 Event: association_change\n Count: 195\n\n 🔔\u0000 Event: creation\n Count: 71\n\n\n INFO Looking for metrics: Config 989 (rtaoutdoor.com - 1058), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 989 (rtaoutdoor.com - 1058)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 413\n\n 🔔\u0000 Event: association_change\n Count: 235\n\n 🔔\u0000 Event: property_change\n Count: 1375\n Properties:\n 📝\u0000 email: 414 changes\n 📝\u0000 hubspot_owner_id: 453 changes\n 📝\u0000 lastname: 94 changes\n 📝\u0000 firstname: 94 changes\n 📝\u0000 phone: 257 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 associatedcompanyid: 52 changes\n 📝\u0000 mobilephone: 2 changes\n 📝\u0000 country: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 58\n\n 🔔\u0000 Event: association_change\n Count: 224\n\n 🔔\u0000 Event: property_change\n Count: 116\n Properties:\n 📝\u0000 hubspot_owner_id: 58 changes\n 📝\u0000 name: 58 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 116\n\n 🔔\u0000 Event: property_change\n Count: 1053\n Properties:\n 📝\u0000 hs_deal_stage_probability: 269 changes\n 📝\u0000 hubspot_owner_id: 161 changes\n 📝\u0000 amount: 120 changes\n 📝\u0000 amount_in_home_currency: 120 changes\n 📝\u0000 closedate: 105 changes\n 📝\u0000 dealstage: 190 changes\n 📝\u0000 amount_stamp___stage_deposit_received: 16 changes\n 📝\u0000 deal_currency_code: 68 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 243\n\n\n INFO Looking for metrics: Config 64 (SalaryFinance - 70), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 64 (SalaryFinance - 70)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 domain: 2 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 92\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 181\n Properties:\n 📝\u0000 email: 16 changes\n 📝\u0000 associatedcompanyid: 13 changes\n 📝\u0000 country: 11 changes\n 📝\u0000 hubspot_owner_id: 117 changes\n 📝\u0000 firstname: 8 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 lastname: 8 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n\n INFO Looking for metrics: Config 1056 (Chromatic - 1119), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1056 (Chromatic - 1119)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 445\n\n 🔔\u0000 Event: property_change\n Count: 2421\n Properties:\n 📝\u0000 email: 438 changes\n 📝\u0000 associatedcompanyid: 405 changes\n 📝\u0000 jobtitle: 760 changes\n 📝\u0000 firstname: 423 changes\n 📝\u0000 lastname: 320 changes\n 📝\u0000 hubspot_owner_id: 66 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 phone: 3 changes\n 📝\u0000 hs_avatar_filemanager_key: 3 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 841\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 94\n Properties:\n 📝\u0000 dealstage: 11 changes\n 📝\u0000 hs_deal_stage_probability: 15 changes\n 📝\u0000 closedate: 16 changes\n 📝\u0000 hs_manual_forecast_category: 13 changes\n 📝\u0000 hs_next_step: 20 changes\n 📝\u0000 amount: 5 changes\n 📝\u0000 dealname: 7 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 createdate: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 🔔\u0000 Event: association_change\n Count: 13\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 844\n\n 🔔\u0000 Event: property_change\n Count: 202\n Properties:\n 📝\u0000 country: 54 changes\n 📝\u0000 hubspot_owner_id: 47 changes\n 📝\u0000 domain: 57 changes\n 📝\u0000 name: 43 changes\n 📝\u0000 industry: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 57\n\n\n INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 533 (Connectd - 559)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 720\n\n 🔔\u0000 Event: property_change\n Count: 3906\n Properties:\n 📝\u0000 mobilephone: 15 changes\n 📝\u0000 lastname: 766 changes\n 📝\u0000 phone: 699 changes\n 📝\u0000 firstname: 773 changes\n 📝\u0000 email: 725 changes\n 📝\u0000 hubspot_owner_id: 757 changes\n 📝\u0000 jobtitle: 99 changes\n 📝\u0000 country: 72 changes\n\n 🔔\u0000 Event: association_change\n Count: 864\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3984\n Properties:\n 📝\u0000 hs_deal_stage_probability: 1843 changes\n 📝\u0000 dealstage: 1316 changes\n 📝\u0000 closedate: 612 changes\n 📝\u0000 createdate: 7 changes\n 📝\u0000 hubspot_owner_id: 134 changes\n 📝\u0000 amount: 23 changes\n 📝\u0000 amount_in_home_currency: 30 changes\n 📝\u0000 dealname: 15 changes\n 📝\u0000 deal_currency_code: 3 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 780\n\n 🔔\u0000 Event: creation\n Count: 648\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 88\n\n\n INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1006 (Dovetail Software - 1076)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 9\n Properties:\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 167\n Properties:\n 📝\u0000 associatedcompanyid: 11 changes\n 📝\u0000 lastname: 11 changes\n 📝\u0000 phone: 11 changes\n 📝\u0000 hubspot_owner_id: 83 changes\n 📝\u0000 mobilephone: 9 changes\n 📝\u0000 firstname: 10 changes\n 📝\u0000 country: 13 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 jobtitle: 10 changes\n\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 25\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 domain: 1 changes\n\n\n INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 154 (Learnerbly - 172)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n\n INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 892 (Logiwa - 942)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 55\n\n 🔔\u0000 Event: property_change\n Count: 322\n Properties:\n 📝\u0000 jobtitle: 56 changes\n 📝\u0000 lastname: 57 changes\n 📝\u0000 firstname: 59 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 email: 55 changes\n 📝\u0000 hubspot_owner_id: 38 changes\n 📝\u0000 associatedcompanyid: 47 changes\n 📝\u0000 phone: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 42\n Properties:\n 📝\u0000 name: 21 changes\n 📝\u0000 domain: 16 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 151\n Properties:\n 📝\u0000 notes_last_updated: 139 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 current_wms: 1 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hs_manual_forecast_category: 1 changes\n\n\n INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 882 (GoGlobal - 933)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 837\n Properties:\n 📝\u0000 hs_next_step: 93 changes\n 📝\u0000 situation: 80 changes\n 📝\u0000 compelling_event: 76 changes\n 📝\u0000 decision_process: 72 changes\n 📝\u0000 decision_criteria: 76 changes\n 📝\u0000 problem: 50 changes\n 📝\u0000 impact: 50 changes\n 📝\u0000 amount: 73 changes\n 📝\u0000 amount_in_home_currency: 63 changes\n 📝\u0000 closedate: 19 changes\n 📝\u0000 dealstage: 39 changes\n 📝\u0000 description: 6 changes\n 📝\u0000 hs_deal_stage_probability: 51 changes\n 📝\u0000 dealname: 22 changes\n 📝\u0000 deal_currency_code: 24 changes\n 📝\u0000 hs_manual_forecast_category: 18 changes\n 📝\u0000 hiring_countries: 4 changes\n 📝\u0000 leadtype: 2 changes\n 📝\u0000 manager_forecast_notes: 10 changes\n 📝\u0000 competitors____please_specify: 1 changes\n 📝\u0000 closed_won_reason_jiminny_ai: 1 changes\n 📝\u0000 client_handover_notes_jiminny_ai: 1 changes\n 📝\u0000 lead_source_deal: 2 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n\n 🔔\u0000 Event: association_change\n Count: 48\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 759\n Properties:\n 📝\u0000 domain: 148 changes\n 📝\u0000 name: 140 changes\n 📝\u0000 country: 135 changes\n 📝\u0000 phone: 115 changes\n 📝\u0000 industry: 124 changes\n 📝\u0000 hubspot_owner_id: 97 changes\n\n 🔔\u0000 Event: creation\n Count: 147\n\n 🔔\u0000 Event: association_change\n Count: 1369\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 4203\n Properties:\n 📝\u0000 lastname: 666 changes\n 📝\u0000 email: 600 changes\n 📝\u0000 hubspot_owner_id: 562 changes\n 📝\u0000 firstname: 608 changes\n 📝\u0000 jobtitle: 555 changes\n 📝\u0000 country: 585 changes\n 📝\u0000 associatedcompanyid: 585 changes\n 📝\u0000 phone: 31 changes\n 📝\u0000 mobilephone: 11 changes\n\n 🔔\u0000 Event: creation\n Count: 600\n\n 🔔\u0000 Event: association_change\n Count: 1349\n\n\n INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 797 (Kodex - 848)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 504\n Properties:\n 📝\u0000 phone: 42 changes\n 📝\u0000 firstname: 48 changes\n 📝\u0000 email: 44 changes\n 📝\u0000 lastname: 50 changes\n 📝\u0000 associatedcompanyid: 138 changes\n 📝\u0000 jobtitle: 38 changes\n 📝\u0000 hubspot_owner_id: 103 changes\n 📝\u0000 mobilephone: 37 changes\n 📝\u0000 country: 4 changes\n\n 🔔\u0000 Event: creation\n Count: 44\n\n 🔔\u0000 Event: association_change\n Count: 623\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 623\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 74\n Properties:\n 📝\u0000 country: 8 changes\n 📝\u0000 name: 9 changes\n 📝\u0000 domain: 12 changes\n 📝\u0000 hubspot_owner_id: 30 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 phone: 7 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 4\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 1 changes\n\n\n INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 636 (ProofPilot - 657)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 44\n\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 142\n Properties:\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 hubspot_owner_id: 24 changes\n 📝\u0000 jobtitle: 28 changes\n 📝\u0000 country: 14 changes\n 📝\u0000 lastname: 16 changes\n 📝\u0000 email: 14 changes\n 📝\u0000 phone: 8 changes\n 📝\u0000 firstname: 16 changes\n 📝\u0000 mobilephone: 1 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 dealtype: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 44\n\n\n INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1063 (Base.com - 1125)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 3464\n\n 🔔\u0000 Event: property_change\n Count: 1320\n Properties:\n 📝\u0000 name: 550 changes\n 📝\u0000 domain: 487 changes\n 📝\u0000 hubspot_owner_id: 157 changes\n 📝\u0000 phone: 35 changes\n 📝\u0000 country: 30 changes\n 📝\u0000 industry: 61 changes\n\n 🔔\u0000 Event: creation\n Count: 604\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 8211\n Properties:\n 📝\u0000 phone: 489 changes\n 📝\u0000 firstname: 1415 changes\n 📝\u0000 lastname: 1329 changes\n 📝\u0000 email: 1552 changes\n 📝\u0000 country: 400 changes\n 📝\u0000 associatedcompanyid: 1554 changes\n 📝\u0000 hubspot_owner_id: 428 changes\n 📝\u0000 jobtitle: 1026 changes\n 📝\u0000 mobilephone: 18 changes\n\n 🔔\u0000 Event: creation\n Count: 1559\n\n 🔔\u0000 Event: association_change\n Count: 3382\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 469\n Properties:\n 📝\u0000 dealstage: 74 changes\n 📝\u0000 hs_deal_stage_probability: 112 changes\n 📝\u0000 closedate: 39 changes\n 📝\u0000 implementation_type: 9 changes\n 📝\u0000 deal_currency_code: 23 changes\n 📝\u0000 minimum_fee: 33 changes\n 📝\u0000 estimated_fulfilment_orders_per_month: 37 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 dealtype: 2 changes\n 📝\u0000 amount: 26 changes\n 📝\u0000 monthly_orders_processed_by_base_with_normal_fee: 20 changes\n 📝\u0000 average_order_value: 18 changes\n 📝\u0000 estimated_orders_per_month: 9 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 dor_principal_ia: 4 changes\n 📝\u0000 objecao_central_ia: 4 changes\n 📝\u0000 proximo_passo_ia: 4 changes\n 📝\u0000 resumo_da_reuniao_ia: 4 changes\n 📝\u0000 categoria_do_portfolio_ia: 3 changes\n 📝\u0000 perfil_comportamental_do_prospect_ia: 4 changes\n 📝\u0000 score_do_vendedor_ia: 4 changes\n 📝\u0000 temperatura_do_deal_ia: 4 changes\n 📝\u0000 nota_da_demo_ia: 4 changes\n 📝\u0000 analise_de_tecnicas_de_vendas_ia: 4 changes\n 📝\u0000 perfil_do_cliente_icp_ia: 4 changes\n 📝\u0000 erp: 8 changes\n 📝\u0000 hub_ia: 2 changes\n 📝\u0000 gap_de_funcionalidade_ia: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 160\n\n 🔔\u0000 Event: creation\n Count: 41\n\n\n INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 766 (Marsello - 781)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 22\n\n 🔔\u0000 Event: property_change\n Count: 87\n Properties:\n 📝\u0000 phone: 5 changes\n 📝\u0000 country: 11 changes\n 📝\u0000 domain: 13 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 name: 27 changes\n 📝\u0000 hubspot_owner_id: 23 changes\n\n 🔔\u0000 Event: association_change\n Count: 203\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 337\n Properties:\n 📝\u0000 jobtitle: 19 changes\n 📝\u0000 hubspot_owner_id: 35 changes\n 📝\u0000 email: 83 changes\n 📝\u0000 associatedcompanyid: 89 changes\n 📝\u0000 mobilephone: 16 changes\n 📝\u0000 phone: 14 changes\n 📝\u0000 country: 17 changes\n 📝\u0000 firstname: 33 changes\n 📝\u0000 lastname: 31 changes\n\n 🔔\u0000 Event: creation\n Count: 24\n\n 🔔\u0000 Event: association_change\n Count: 202\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 16\n Properties:\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 sites: 1 changes\n 📝\u0000 customers: 1 changes\n 📝\u0000 deal_icp: 1 changes\n 📝\u0000 integrations: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n\n INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16.","depth":4,"value":"📝\u0000 dealstage: 3 changes\n 📝\u0000 hs_deal_stage_probability: 6 changes\n 📝\u0000 service_type_updated: 2 changes\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 days_to_close: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 716 (Terpene Belt Farms - 737), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 716 (Terpene Belt Farms - 737)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 72\n Properties:\n 📝\u0000 phone: 8 changes\n 📝\u0000 email: 7 changes\n 📝\u0000 country: 16 changes\n 📝\u0000 lastname: 12 changes\n 📝\u0000 firstname: 10 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 jobtitle: 9 changes\n 📝\u0000 associatedcompanyid: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: creation\n Count: 7\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 47\n\n 🔔\u0000 Event: property_change\n Count: 79\n Properties:\n 📝\u0000 hs_deal_stage_probability: 24 changes\n 📝\u0000 deal_currency_code: 6 changes\n 📝\u0000 amount: 13 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 dealstage: 18 changes\n 📝\u0000 pipeline: 3 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 hubspot_owner_id: 3 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 name: 3 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 921 (Matrak - 968), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 921 (Matrak - 968)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 email: 3 changes\n 📝\u0000 associatedcompanyid: 4 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 jobtitle: 1 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 name: 1 changes\n 📝\u0000 domain: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 amount: 1 changes\n\n\n INFO Looking for metrics: Config 1054 (Temelio - 1118), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1054 (Temelio - 1118)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 80\n Properties:\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 dealstage: 15 changes\n 📝\u0000 hs_manual_forecast_category: 12 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 35 changes\n 📝\u0000 hs_deal_stage_probability: 13 changes\n\n 🔔\u0000 Event: association_change\n Count: 85\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 7838\n\n 🔔\u0000 Event: property_change\n Count: 1938\n Properties:\n 📝\u0000 associatedcompanyid: 1828 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 lastname: 6 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 firstname: 7 changes\n 📝\u0000 hubspot_owner_id: 76 changes\n\n 🔔\u0000 Event: creation\n Count: 15\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 1609\n Properties:\n 📝\u0000 domain: 72 changes\n 📝\u0000 name: 6 changes\n 📝\u0000 hubspot_owner_id: 1047 changes\n 📝\u0000 phone: 431 changes\n 📝\u0000 country: 7 changes\n 📝\u0000 industry: 46 changes\n\n 🔔\u0000 Event: association_change\n Count: 7911\n\n\n INFO Looking for metrics: Config 1060 (Velatir - 1122), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1060 (Velatir - 1122)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 205\n Properties:\n 📝\u0000 email: 49 changes\n 📝\u0000 hubspot_owner_id: 64 changes\n 📝\u0000 firstname: 15 changes\n 📝\u0000 lastname: 14 changes\n 📝\u0000 associatedcompanyid: 50 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 jobtitle: 5 changes\n 📝\u0000 country: 3 changes\n\n 🔔\u0000 Event: creation\n Count: 50\n\n 🔔\u0000 Event: association_change\n Count: 114\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 21\n\n 🔔\u0000 Event: property_change\n Count: 496\n Properties:\n 📝\u0000 phone: 198 changes\n 📝\u0000 domain: 24 changes\n 📝\u0000 country: 18 changes\n 📝\u0000 name: 18 changes\n 📝\u0000 industry: 13 changes\n 📝\u0000 hubspot_owner_id: 225 changes\n\n 🔔\u0000 Event: association_change\n Count: 126\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 55\n Properties:\n 📝\u0000 hs_deal_stage_probability: 18 changes\n 📝\u0000 deal_currency_code: 8 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 dealname: 4 changes\n 📝\u0000 dealstage: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 36\n\n\n INFO Looking for metrics: Config 272 (Bonham & Brook - 290), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 272 (Bonham & Brook - 290)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 33\n\n 🔔\u0000 Event: association_change\n Count: 212\n\n 🔔\u0000 Event: property_change\n Count: 221\n Properties:\n 📝\u0000 hubspot_owner_id: 58 changes\n 📝\u0000 country: 33 changes\n 📝\u0000 name: 36 changes\n 📝\u0000 domain: 33 changes\n 📝\u0000 phone: 34 changes\n 📝\u0000 industry: 27 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 571\n Properties:\n 📝\u0000 notes_last_updated: 323 changes\n 📝\u0000 notes_last_contacted: 193 changes\n 📝\u0000 hs_deal_stage_probability: 21 changes\n 📝\u0000 dealstage: 13 changes\n 📝\u0000 amount: 8 changes\n 📝\u0000 dealname: 8 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 31\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 580\n Properties:\n 📝\u0000 country: 42 changes\n 📝\u0000 mobilephone: 25 changes\n 📝\u0000 jobtitle: 66 changes\n 📝\u0000 phone: 69 changes\n 📝\u0000 email: 70 changes\n 📝\u0000 hubspot_owner_id: 100 changes\n 📝\u0000 firstname: 66 changes\n 📝\u0000 lastname: 65 changes\n 📝\u0000 associatedcompanyid: 77 changes\n\n 🔔\u0000 Event: association_change\n Count: 195\n\n 🔔\u0000 Event: creation\n Count: 71\n\n\n INFO Looking for metrics: Config 989 (rtaoutdoor.com - 1058), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 989 (rtaoutdoor.com - 1058)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 413\n\n 🔔\u0000 Event: association_change\n Count: 235\n\n 🔔\u0000 Event: property_change\n Count: 1375\n Properties:\n 📝\u0000 email: 414 changes\n 📝\u0000 hubspot_owner_id: 453 changes\n 📝\u0000 lastname: 94 changes\n 📝\u0000 firstname: 94 changes\n 📝\u0000 phone: 257 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 associatedcompanyid: 52 changes\n 📝\u0000 mobilephone: 2 changes\n 📝\u0000 country: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 58\n\n 🔔\u0000 Event: association_change\n Count: 224\n\n 🔔\u0000 Event: property_change\n Count: 116\n Properties:\n 📝\u0000 hubspot_owner_id: 58 changes\n 📝\u0000 name: 58 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 116\n\n 🔔\u0000 Event: property_change\n Count: 1053\n Properties:\n 📝\u0000 hs_deal_stage_probability: 269 changes\n 📝\u0000 hubspot_owner_id: 161 changes\n 📝\u0000 amount: 120 changes\n 📝\u0000 amount_in_home_currency: 120 changes\n 📝\u0000 closedate: 105 changes\n 📝\u0000 dealstage: 190 changes\n 📝\u0000 amount_stamp___stage_deposit_received: 16 changes\n 📝\u0000 deal_currency_code: 68 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 243\n\n\n INFO Looking for metrics: Config 64 (SalaryFinance - 70), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 64 (SalaryFinance - 70)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 domain: 2 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 92\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 181\n Properties:\n 📝\u0000 email: 16 changes\n 📝\u0000 associatedcompanyid: 13 changes\n 📝\u0000 country: 11 changes\n 📝\u0000 hubspot_owner_id: 117 changes\n 📝\u0000 firstname: 8 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 lastname: 8 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n\n INFO Looking for metrics: Config 1056 (Chromatic - 1119), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1056 (Chromatic - 1119)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 445\n\n 🔔\u0000 Event: property_change\n Count: 2421\n Properties:\n 📝\u0000 email: 438 changes\n 📝\u0000 associatedcompanyid: 405 changes\n 📝\u0000 jobtitle: 760 changes\n 📝\u0000 firstname: 423 changes\n 📝\u0000 lastname: 320 changes\n 📝\u0000 hubspot_owner_id: 66 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 phone: 3 changes\n 📝\u0000 hs_avatar_filemanager_key: 3 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 841\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 94\n Properties:\n 📝\u0000 dealstage: 11 changes\n 📝\u0000 hs_deal_stage_probability: 15 changes\n 📝\u0000 closedate: 16 changes\n 📝\u0000 hs_manual_forecast_category: 13 changes\n 📝\u0000 hs_next_step: 20 changes\n 📝\u0000 amount: 5 changes\n 📝\u0000 dealname: 7 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 createdate: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 🔔\u0000 Event: association_change\n Count: 13\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 844\n\n 🔔\u0000 Event: property_change\n Count: 202\n Properties:\n 📝\u0000 country: 54 changes\n 📝\u0000 hubspot_owner_id: 47 changes\n 📝\u0000 domain: 57 changes\n 📝\u0000 name: 43 changes\n 📝\u0000 industry: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 57\n\n\n INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 533 (Connectd - 559)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 720\n\n 🔔\u0000 Event: property_change\n Count: 3906\n Properties:\n 📝\u0000 mobilephone: 15 changes\n 📝\u0000 lastname: 766 changes\n 📝\u0000 phone: 699 changes\n 📝\u0000 firstname: 773 changes\n 📝\u0000 email: 725 changes\n 📝\u0000 hubspot_owner_id: 757 changes\n 📝\u0000 jobtitle: 99 changes\n 📝\u0000 country: 72 changes\n\n 🔔\u0000 Event: association_change\n Count: 864\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3984\n Properties:\n 📝\u0000 hs_deal_stage_probability: 1843 changes\n 📝\u0000 dealstage: 1316 changes\n 📝\u0000 closedate: 612 changes\n 📝\u0000 createdate: 7 changes\n 📝\u0000 hubspot_owner_id: 134 changes\n 📝\u0000 amount: 23 changes\n 📝\u0000 amount_in_home_currency: 30 changes\n 📝\u0000 dealname: 15 changes\n 📝\u0000 deal_currency_code: 3 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 780\n\n 🔔\u0000 Event: creation\n Count: 648\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 88\n\n\n INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1006 (Dovetail Software - 1076)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 9\n Properties:\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 167\n Properties:\n 📝\u0000 associatedcompanyid: 11 changes\n 📝\u0000 lastname: 11 changes\n 📝\u0000 phone: 11 changes\n 📝\u0000 hubspot_owner_id: 83 changes\n 📝\u0000 mobilephone: 9 changes\n 📝\u0000 firstname: 10 changes\n 📝\u0000 country: 13 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 jobtitle: 10 changes\n\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 25\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 domain: 1 changes\n\n\n INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 154 (Learnerbly - 172)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n\n INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 892 (Logiwa - 942)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 55\n\n 🔔\u0000 Event: property_change\n Count: 322\n Properties:\n 📝\u0000 jobtitle: 56 changes\n 📝\u0000 lastname: 57 changes\n 📝\u0000 firstname: 59 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 email: 55 changes\n 📝\u0000 hubspot_owner_id: 38 changes\n 📝\u0000 associatedcompanyid: 47 changes\n 📝\u0000 phone: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 42\n Properties:\n 📝\u0000 name: 21 changes\n 📝\u0000 domain: 16 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 151\n Properties:\n 📝\u0000 notes_last_updated: 139 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 current_wms: 1 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hs_manual_forecast_category: 1 changes\n\n\n INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 882 (GoGlobal - 933)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 837\n Properties:\n 📝\u0000 hs_next_step: 93 changes\n 📝\u0000 situation: 80 changes\n 📝\u0000 compelling_event: 76 changes\n 📝\u0000 decision_process: 72 changes\n 📝\u0000 decision_criteria: 76 changes\n 📝\u0000 problem: 50 changes\n 📝\u0000 impact: 50 changes\n 📝\u0000 amount: 73 changes\n 📝\u0000 amount_in_home_currency: 63 changes\n 📝\u0000 closedate: 19 changes\n 📝\u0000 dealstage: 39 changes\n 📝\u0000 description: 6 changes\n 📝\u0000 hs_deal_stage_probability: 51 changes\n 📝\u0000 dealname: 22 changes\n 📝\u0000 deal_currency_code: 24 changes\n 📝\u0000 hs_manual_forecast_category: 18 changes\n 📝\u0000 hiring_countries: 4 changes\n 📝\u0000 leadtype: 2 changes\n 📝\u0000 manager_forecast_notes: 10 changes\n 📝\u0000 competitors____please_specify: 1 changes\n 📝\u0000 closed_won_reason_jiminny_ai: 1 changes\n 📝\u0000 client_handover_notes_jiminny_ai: 1 changes\n 📝\u0000 lead_source_deal: 2 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n\n 🔔\u0000 Event: association_change\n Count: 48\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 759\n Properties:\n 📝\u0000 domain: 148 changes\n 📝\u0000 name: 140 changes\n 📝\u0000 country: 135 changes\n 📝\u0000 phone: 115 changes\n 📝\u0000 industry: 124 changes\n 📝\u0000 hubspot_owner_id: 97 changes\n\n 🔔\u0000 Event: creation\n Count: 147\n\n 🔔\u0000 Event: association_change\n Count: 1369\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 4203\n Properties:\n 📝\u0000 lastname: 666 changes\n 📝\u0000 email: 600 changes\n 📝\u0000 hubspot_owner_id: 562 changes\n 📝\u0000 firstname: 608 changes\n 📝\u0000 jobtitle: 555 changes\n 📝\u0000 country: 585 changes\n 📝\u0000 associatedcompanyid: 585 changes\n 📝\u0000 phone: 31 changes\n 📝\u0000 mobilephone: 11 changes\n\n 🔔\u0000 Event: creation\n Count: 600\n\n 🔔\u0000 Event: association_change\n Count: 1349\n\n\n INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 797 (Kodex - 848)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 504\n Properties:\n 📝\u0000 phone: 42 changes\n 📝\u0000 firstname: 48 changes\n 📝\u0000 email: 44 changes\n 📝\u0000 lastname: 50 changes\n 📝\u0000 associatedcompanyid: 138 changes\n 📝\u0000 jobtitle: 38 changes\n 📝\u0000 hubspot_owner_id: 103 changes\n 📝\u0000 mobilephone: 37 changes\n 📝\u0000 country: 4 changes\n\n 🔔\u0000 Event: creation\n Count: 44\n\n 🔔\u0000 Event: association_change\n Count: 623\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 623\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 74\n Properties:\n 📝\u0000 country: 8 changes\n 📝\u0000 name: 9 changes\n 📝\u0000 domain: 12 changes\n 📝\u0000 hubspot_owner_id: 30 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 phone: 7 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 4\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 1 changes\n\n\n INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 636 (ProofPilot - 657)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 44\n\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 142\n Properties:\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 hubspot_owner_id: 24 changes\n 📝\u0000 jobtitle: 28 changes\n 📝\u0000 country: 14 changes\n 📝\u0000 lastname: 16 changes\n 📝\u0000 email: 14 changes\n 📝\u0000 phone: 8 changes\n 📝\u0000 firstname: 16 changes\n 📝\u0000 mobilephone: 1 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 dealtype: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 44\n\n\n INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1063 (Base.com - 1125)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 3464\n\n 🔔\u0000 Event: property_change\n Count: 1320\n Properties:\n 📝\u0000 name: 550 changes\n 📝\u0000 domain: 487 changes\n 📝\u0000 hubspot_owner_id: 157 changes\n 📝\u0000 phone: 35 changes\n 📝\u0000 country: 30 changes\n 📝\u0000 industry: 61 changes\n\n 🔔\u0000 Event: creation\n Count: 604\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 8211\n Properties:\n 📝\u0000 phone: 489 changes\n 📝\u0000 firstname: 1415 changes\n 📝\u0000 lastname: 1329 changes\n 📝\u0000 email: 1552 changes\n 📝\u0000 country: 400 changes\n 📝\u0000 associatedcompanyid: 1554 changes\n 📝\u0000 hubspot_owner_id: 428 changes\n 📝\u0000 jobtitle: 1026 changes\n 📝\u0000 mobilephone: 18 changes\n\n 🔔\u0000 Event: creation\n Count: 1559\n\n 🔔\u0000 Event: association_change\n Count: 3382\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 469\n Properties:\n 📝\u0000 dealstage: 74 changes\n 📝\u0000 hs_deal_stage_probability: 112 changes\n 📝\u0000 closedate: 39 changes\n 📝\u0000 implementation_type: 9 changes\n 📝\u0000 deal_currency_code: 23 changes\n 📝\u0000 minimum_fee: 33 changes\n 📝\u0000 estimated_fulfilment_orders_per_month: 37 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 dealtype: 2 changes\n 📝\u0000 amount: 26 changes\n 📝\u0000 monthly_orders_processed_by_base_with_normal_fee: 20 changes\n 📝\u0000 average_order_value: 18 changes\n 📝\u0000 estimated_orders_per_month: 9 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 dor_principal_ia: 4 changes\n 📝\u0000 objecao_central_ia: 4 changes\n 📝\u0000 proximo_passo_ia: 4 changes\n 📝\u0000 resumo_da_reuniao_ia: 4 changes\n 📝\u0000 categoria_do_portfolio_ia: 3 changes\n 📝\u0000 perfil_comportamental_do_prospect_ia: 4 changes\n 📝\u0000 score_do_vendedor_ia: 4 changes\n 📝\u0000 temperatura_do_deal_ia: 4 changes\n 📝\u0000 nota_da_demo_ia: 4 changes\n 📝\u0000 analise_de_tecnicas_de_vendas_ia: 4 changes\n 📝\u0000 perfil_do_cliente_icp_ia: 4 changes\n 📝\u0000 erp: 8 changes\n 📝\u0000 hub_ia: 2 changes\n 📝\u0000 gap_de_funcionalidade_ia: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 160\n\n 🔔\u0000 Event: creation\n Count: 41\n\n\n INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 766 (Marsello - 781)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 22\n\n 🔔\u0000 Event: property_change\n Count: 87\n Properties:\n 📝\u0000 phone: 5 changes\n 📝\u0000 country: 11 changes\n 📝\u0000 domain: 13 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 name: 27 changes\n 📝\u0000 hubspot_owner_id: 23 changes\n\n 🔔\u0000 Event: association_change\n Count: 203\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 337\n Properties:\n 📝\u0000 jobtitle: 19 changes\n 📝\u0000 hubspot_owner_id: 35 changes\n 📝\u0000 email: 83 changes\n 📝\u0000 associatedcompanyid: 89 changes\n 📝\u0000 mobilephone: 16 changes\n 📝\u0000 phone: 14 changes\n 📝\u0000 country: 17 changes\n 📝\u0000 firstname: 33 changes\n 📝\u0000 lastname: 31 changes\n\n 🔔\u0000 Event: creation\n Count: 24\n\n 🔔\u0000 Event: association_change\n Count: 202\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 16\n Properties:\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 sites: 1 changes\n 📝\u0000 customers: 1 changes\n 📝\u0000 deal_icp: 1 changes\n 📝\u0000 integrations: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n\n INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16.","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
2858102591112417469
|
7613041653466939253
|
visual_change
|
accessibility
|
NULL
|
📝 dealstage: 3 changes
📝 hs_deal_sta 📝 dealstage: 3 changes
📝 hs_deal_stage_probability: 6 changes
📝 service_type_updated: 2 changes
📝 hs_next_step: 2 changes
📝 closedate: 1 changes
📝 days_to_close: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 716 (Terpene Belt Farms - 737), Date 2026-04-16.
📊 Webhook Metrics for Config 716 (Terpene Belt Farms - 737)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 72
Properties:
📝 phone: 8 changes
📝 email: 7 changes
📝 country: 16 changes
📝 lastname: 12 changes
📝 firstname: 10 changes
📝 mobilephone: 3 changes
📝 hubspot_owner_id: 5 changes
📝 jobtitle: 9 changes
📝 associatedcompanyid: 2 changes
🔔 Event: association_change
Count: 27
🔔 Event: creation
Count: 7
📦 Object Type: deal
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 47
🔔 Event: property_change
Count: 79
Properties:
📝 hs_deal_stage_probability: 24 changes
📝 deal_currency_code: 6 changes
📝 amount: 13 changes
📝 closedate: 9 changes
📝 dealstage: 18 changes
📝 pipeline: 3 changes
📝 dealname: 3 changes
📝 hubspot_owner_id: 3 changes
📦 Object Type: company
🔔 Event: property_change
Count: 5
Properties:
📝 hubspot_owner_id: 1 changes
📝 name: 3 changes
📝 country: 1 changes
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 921 (Matrak - 968), Date 2026-04-16.
📊 Webhook Metrics for Config 921 (Matrak - 968)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 17
Properties:
📝 hubspot_owner_id: 6 changes
📝 email: 3 changes
📝 associatedcompanyid: 4 changes
📝 phone: 1 changes
📝 jobtitle: 1 changes
📝 lastname: 1 changes
📝 firstname: 1 changes
🔔 Event: creation
Count: 3
🔔 Event: association_change
Count: 8
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 2
Properties:
📝 name: 1 changes
📝 domain: 1 changes
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: property_change
Count: 5
Properties:
📝 hubspot_owner_id: 4 changes
📝 amount: 1 changes
INFO Looking for metrics: Config 1054 (Temelio - 1118), Date 2026-04-16.
📊 Webhook Metrics for Config 1054 (Temelio - 1118)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 80
Properties:
📝 hs_next_step: 2 changes
📝 dealstage: 15 changes
📝 hs_manual_forecast_category: 12 changes
📝 hubspot_owner_id: 1 changes
📝 amount: 2 changes
📝 closedate: 35 changes
📝 hs_deal_stage_probability: 13 changes
🔔 Event: association_change
Count: 85
📦 Object Type: contact
🔔 Event: association_change
Count: 7838
🔔 Event: property_change
Count: 1938
Properties:
📝 associatedcompanyid: 1828 changes
📝 phone: 5 changes
📝 lastname: 6 changes
📝 email: 9 changes
📝 jobtitle: 7 changes
📝 firstname: 7 changes
📝 hubspot_owner_id: 76 changes
🔔 Event: creation
Count: 15
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 1609
Properties:
📝 domain: 72 changes
📝 name: 6 changes
📝 hubspot_owner_id: 1047 changes
📝 phone: 431 changes
📝 country: 7 changes
📝 industry: 46 changes
🔔 Event: association_change
Count: 7911
INFO Looking for metrics: Config 1060 (Velatir - 1122), Date 2026-04-16.
📊 Webhook Metrics for Config 1060 (Velatir - 1122)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 205
Properties:
📝 email: 49 changes
📝 hubspot_owner_id: 64 changes
📝 firstname: 15 changes
📝 lastname: 14 changes
📝 associatedcompanyid: 50 changes
📝 phone: 5 changes
📝 jobtitle: 5 changes
📝 country: 3 changes
🔔 Event: creation
Count: 50
🔔 Event: association_change
Count: 114
📦 Object Type: company
🔔 Event: creation
Count: 21
🔔 Event: property_change
Count: 496
Properties:
📝 phone: 198 changes
📝 domain: 24 changes
📝 country: 18 changes
📝 name: 18 changes
📝 industry: 13 changes
📝 hubspot_owner_id: 225 changes
🔔 Event: association_change
Count: 126
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 55
Properties:
📝 hs_deal_stage_probability: 18 changes
📝 deal_currency_code: 8 changes
📝 amount: 10 changes
📝 hubspot_owner_id: 6 changes
📝 dealtype: 3 changes
📝 dealname: 4 changes
📝 dealstage: 6 changes
🔔 Event: association_change
Count: 36
INFO Looking for metrics: Config 272 (Bonham & Brook - 290), Date 2026-04-16.
📊 Webhook Metrics for Config 272 (Bonham & Brook - 290)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 33
🔔 Event: association_change
Count: 212
🔔 Event: property_change
Count: 221
Properties:
📝 hubspot_owner_id: 58 changes
📝 country: 33 changes
📝 name: 36 changes
📝 domain: 33 changes
📝 phone: 34 changes
📝 industry: 27 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 571
Properties:
📝 notes_last_updated: 323 changes
📝 notes_last_contacted: 193 changes
📝 hs_deal_stage_probability: 21 changes
📝 dealstage: 13 changes
📝 amount: 8 changes
📝 dealname: 8 changes
📝 hs_manual_forecast_category: 3 changes
📝 closedate: 1 changes
📝 pipeline: 1 changes
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 31
📦 Object Type: contact
🔔 Event: property_change
Count: 580
Properties:
📝 country: 42 changes
📝 mobilephone: 25 changes
📝 jobtitle: 66 changes
📝 phone: 69 changes
📝 email: 70 changes
📝 hubspot_owner_id: 100 changes
📝 firstname: 66 changes
📝 lastname: 65 changes
📝 associatedcompanyid: 77 changes
🔔 Event: association_change
Count: 195
🔔 Event: creation
Count: 71
INFO Looking for metrics: Config 989 (rtaoutdoor.com - 1058), Date 2026-04-16.
📊 Webhook Metrics for Config 989 (rtaoutdoor.com - 1058)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 413
🔔 Event: association_change
Count: 235
🔔 Event: property_change
Count: 1375
Properties:
📝 email: 414 changes
📝 hubspot_owner_id: 453 changes
📝 lastname: 94 changes
📝 firstname: 94 changes
📝 phone: 257 changes
📝 jobtitle: 8 changes
📝 associatedcompanyid: 52 changes
📝 mobilephone: 2 changes
📝 country: 1 changes
📦 Object Type: company
🔔 Event: creation
Count: 58
🔔 Event: association_change
Count: 224
🔔 Event: property_change
Count: 116
Properties:
📝 hubspot_owner_id: 58 changes
📝 name: 58 changes
📦 Object Type: deal
🔔 Event: creation
Count: 116
🔔 Event: property_change
Count: 1053
Properties:
📝 hs_deal_stage_probability: 269 changes
📝 hubspot_owner_id: 161 changes
📝 amount: 120 changes
📝 amount_in_home_currency: 120 changes
📝 closedate: 105 changes
📝 dealstage: 190 changes
📝 amount_stamp___stage_deposit_received: 16 changes
📝 deal_currency_code: 68 changes
📝 dealname: 3 changes
📝 pipeline: 1 changes
🔔 Event: association_change
Count: 243
INFO Looking for metrics: Config 64 (SalaryFinance - 70), Date 2026-04-16.
📊 Webhook Metrics for Config 64 (SalaryFinance - 70)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 11
Properties:
📝 hubspot_owner_id: 5 changes
📝 domain: 2 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 name: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 92
📦 Object Type: deal
🔔 Event: property_change
Count: 3
Properties:
📝 closedate: 1 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
🔔 Event: association_change
Count: 4
📦 Object Type: contact
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 181
Properties:
📝 email: 16 changes
📝 associatedcompanyid: 13 changes
📝 country: 11 changes
📝 hubspot_owner_id: 117 changes
📝 firstname: 8 changes
📝 jobtitle: 8 changes
📝 lastname: 8 changes
🔔 Event: association_change
Count: 96
INFO Looking for metrics: Config 1056 (Chromatic - 1119), Date 2026-04-16.
📊 Webhook Metrics for Config 1056 (Chromatic - 1119)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 445
🔔 Event: property_change
Count: 2421
Properties:
📝 email: 438 changes
📝 associatedcompanyid: 405 changes
📝 jobtitle: 760 changes
📝 firstname: 423 changes
📝 lastname: 320 changes
📝 hubspot_owner_id: 66 changes
📝 country: 2 changes
📝 phone: 3 changes
📝 hs_avatar_filemanager_key: 3 changes
📝 mobilephone: 1 changes
🔔 Event: association_change
Count: 841
📦 Object Type: deal
🔔 Event: property_change
Count: 94
Properties:
📝 dealstage: 11 changes
📝 hs_deal_stage_probability: 15 changes
📝 closedate: 16 changes
📝 hs_manual_forecast_category: 13 changes
📝 hs_next_step: 20 changes
📝 amount: 5 changes
📝 dealname: 7 changes
📝 hubspot_owner_id: 2 changes
📝 dealtype: 3 changes
📝 createdate: 2 changes
🔔 Event: creation
Count: 4
🔔 Event: association_change
Count: 13
📦 Object Type: company
🔔 Event: association_change
Count: 844
🔔 Event: property_change
Count: 202
Properties:
📝 country: 54 changes
📝 hubspot_owner_id: 47 changes
📝 domain: 57 changes
📝 name: 43 changes
📝 industry: 1 changes
🔔 Event: creation
Count: 57
INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16.
📊 Webhook Metrics for Config 533 (Connectd - 559)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 720
🔔 Event: property_change
Count: 3906
Properties:
📝 mobilephone: 15 changes
📝 lastname: 766 changes
📝 phone: 699 changes
📝 firstname: 773 changes
📝 email: 725 changes
📝 hubspot_owner_id: 757 changes
📝 jobtitle: 99 changes
📝 country: 72 changes
🔔 Event: association_change
Count: 864
📦 Object Type: deal
🔔 Event: property_change
Count: 3984
Properties:
📝 hs_deal_stage_probability: 1843 changes
📝 dealstage: 1316 changes
📝 closedate: 612 changes
📝 createdate: 7 changes
📝 hubspot_owner_id: 134 changes
📝 amount: 23 changes
📝 amount_in_home_currency: 30 changes
📝 dealname: 15 changes
📝 deal_currency_code: 3 changes
📝 pipeline: 1 changes
🔔 Event: association_change
Count: 780
🔔 Event: creation
Count: 648
📦 Object Type: company
🔔 Event: association_change
Count: 88
INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16.
📊 Webhook Metrics for Config 1006 (Dovetail Software - 1076)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 9
Properties:
📝 hs_manual_forecast_category: 2 changes
📝 hs_deal_stage_probability: 3 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
🔔 Event: creation
Count: 2
📦 Object Type: contact
🔔 Event: property_change
Count: 167
Properties:
📝 associatedcompanyid: 11 changes
📝 lastname: 11 changes
📝 phone: 11 changes
📝 hubspot_owner_id: 83 changes
📝 mobilephone: 9 changes
📝 firstname: 10 changes
📝 country: 13 changes
📝 email: 9 changes
📝 jobtitle: 10 changes
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 25
📦 Object Type: company
🔔 Event: association_change
Count: 27
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 14
Properties:
📝 hubspot_owner_id: 7 changes
📝 phone: 2 changes
📝 name: 1 changes
📝 country: 2 changes
📝 industry: 1 changes
📝 domain: 1 changes
INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16.
📊 Webhook Metrics for Config 154 (Learnerbly - 172)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 2
Properties:
📝 hubspot_owner_id: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 4
📦 Object Type: company
🔔 Event: association_change
Count: 4
📦 Object Type: deal
🔔 Event: property_change
Count: 3
Properties:
📝 amount: 1 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16.
📊 Webhook Metrics for Config 892 (Logiwa - 942)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 55
🔔 Event: property_change
Count: 322
Properties:
📝 jobtitle: 56 changes
📝 lastname: 57 changes
📝 firstname: 59 changes
📝 country: 4 changes
📝 email: 55 changes
📝 hubspot_owner_id: 38 changes
📝 associatedcompanyid: 47 changes
📝 phone: 6 changes
🔔 Event: association_change
Count: 96
📦 Object Type: company
🔔 Event: creation
Count: 16
🔔 Event: property_change
Count: 42
Properties:
📝 name: 21 changes
📝 domain: 16 changes
📝 hubspot_owner_id: 5 changes
🔔 Event: association_change
Count: 96
📦 Object Type: deal
🔔 Event: property_change
Count: 151
Properties:
📝 notes_last_updated: 139 changes
📝 closedate: 3 changes
📝 dealstage: 3 changes
📝 current_wms: 1 changes
📝 hs_deal_stage_probability: 3 changes
📝 amount: 1 changes
📝 hs_manual_forecast_category: 1 changes
INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16.
📊 Webhook Metrics for Config 882 (GoGlobal - 933)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 837
Properties:
📝 hs_next_step: 93 changes
📝 situation: 80 changes
📝 compelling_event: 76 changes
📝 decision_process: 72 changes
📝 decision_criteria: 76 changes
📝 problem: 50 changes
📝 impact: 50 changes
📝 amount: 73 changes
📝 amount_in_home_currency: 63 changes
📝 closedate: 19 changes
📝 dealstage: 39 changes
📝 description: 6 changes
📝 hs_deal_stage_probability: 51 changes
📝 dealname: 22 changes
📝 deal_currency_code: 24 changes
📝 hs_manual_forecast_category: 18 changes
📝 hiring_countries: 4 changes
📝 leadtype: 2 changes
📝 manager_forecast_notes: 10 changes
📝 competitors____please_specify: 1 changes
📝 closed_won_reason_jiminny_ai: 1 changes
📝 client_handover_notes_jiminny_ai: 1 changes
📝 lead_source_deal: 2 changes
📝 hubspot_owner_id: 4 changes
🔔 Event: association_change
Count: 48
📦 Object Type: company
🔔 Event: property_change
Count: 759
Properties:
📝 domain: 148 changes
📝 name: 140 changes
📝 country: 135 changes
📝 phone: 115 changes
📝 industry: 124 changes
📝 hubspot_owner_id: 97 changes
🔔 Event: creation
Count: 147
🔔 Event: association_change
Count: 1369
📦 Object Type: contact
🔔 Event: property_change
Count: 4203
Properties:
📝 lastname: 666 changes
📝 email: 600 changes
📝 hubspot_owner_id: 562 changes
📝 firstname: 608 changes
📝 jobtitle: 555 changes
📝 country: 585 changes
📝 associatedcompanyid: 585 changes
📝 phone: 31 changes
📝 mobilephone: 11 changes
🔔 Event: creation
Count: 600
🔔 Event: association_change
Count: 1349
INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16.
📊 Webhook Metrics for Config 797 (Kodex - 848)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 504
Properties:
📝 phone: 42 changes
📝 firstname: 48 changes
📝 email: 44 changes
📝 lastname: 50 changes
📝 associatedcompanyid: 138 changes
📝 jobtitle: 38 changes
📝 hubspot_owner_id: 103 changes
📝 mobilephone: 37 changes
📝 country: 4 changes
🔔 Event: creation
Count: 44
🔔 Event: association_change
Count: 623
📦 Object Type: company
🔔 Event: association_change
Count: 623
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 74
Properties:
📝 country: 8 changes
📝 name: 9 changes
📝 domain: 12 changes
📝 hubspot_owner_id: 30 changes
📝 industry: 8 changes
📝 phone: 7 changes
📦 Object Type: deal
🔔 Event: association_change
Count: 2
🔔 Event: property_change
Count: 4
Properties:
📝 amount: 1 changes
📝 hubspot_owner_id: 1 changes
📝 closedate: 1 changes
📝 dealname: 1 changes
INFO Looking for metrics: Config 636 (ProofPilot - 657), Date 2026-04-16.
📊 Webhook Metrics for Config 636 (ProofPilot - 657)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 44
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 142
Properties:
📝 associatedcompanyid: 21 changes
📝 hubspot_owner_id: 24 changes
📝 jobtitle: 28 changes
📝 country: 14 changes
📝 lastname: 16 changes
📝 email: 14 changes
📝 phone: 8 changes
📝 firstname: 16 changes
📝 mobilephone: 1 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 8
Properties:
📝 dealtype: 1 changes
📝 amount: 2 changes
📝 closedate: 1 changes
📝 dealname: 2 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 44
INFO Looking for metrics: Config 1063 (Base.com - 1125), Date 2026-04-16.
📊 Webhook Metrics for Config 1063 (Base.com - 1125)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 3464
🔔 Event: property_change
Count: 1320
Properties:
📝 name: 550 changes
📝 domain: 487 changes
📝 hubspot_owner_id: 157 changes
📝 phone: 35 changes
📝 country: 30 changes
📝 industry: 61 changes
🔔 Event: creation
Count: 604
📦 Object Type: contact
🔔 Event: property_change
Count: 8211
Properties:
📝 phone: 489 changes
📝 firstname: 1415 changes
📝 lastname: 1329 changes
📝 email: 1552 changes
📝 country: 400 changes
📝 associatedcompanyid: 1554 changes
📝 hubspot_owner_id: 428 changes
📝 jobtitle: 1026 changes
📝 mobilephone: 18 changes
🔔 Event: creation
Count: 1559
🔔 Event: association_change
Count: 3382
📦 Object Type: deal
🔔 Event: property_change
Count: 469
Properties:
📝 dealstage: 74 changes
📝 hs_deal_stage_probability: 112 changes
📝 closedate: 39 changes
📝 implementation_type: 9 changes
📝 deal_currency_code: 23 changes
📝 minimum_fee: 33 changes
📝 estimated_fulfilment_orders_per_month: 37 changes
📝 hubspot_owner_id: 8 changes
📝 dealtype: 2 changes
📝 amount: 26 changes
📝 monthly_orders_processed_by_base_with_normal_fee: 20 changes
📝 average_order_value: 18 changes
📝 estimated_orders_per_month: 9 changes
📝 dealname: 3 changes
📝 pipeline: 1 changes
📝 dor_principal_ia: 4 changes
📝 objecao_central_ia: 4 changes
📝 proximo_passo_ia: 4 changes
📝 resumo_da_reuniao_ia: 4 changes
📝 categoria_do_portfolio_ia: 3 changes
📝 perfil_comportamental_do_prospect_ia: 4 changes
📝 score_do_vendedor_ia: 4 changes
📝 temperatura_do_deal_ia: 4 changes
📝 nota_da_demo_ia: 4 changes
📝 analise_de_tecnicas_de_vendas_ia: 4 changes
📝 perfil_do_cliente_icp_ia: 4 changes
📝 erp: 8 changes
📝 hub_ia: 2 changes
📝 gap_de_funcionalidade_ia: 2 changes
🔔 Event: association_change
Count: 160
🔔 Event: creation
Count: 41
INFO Looking for metrics: Config 766 (Marsello - 781), Date 2026-04-16.
📊 Webhook Metrics for Config 766 (Marsello - 781)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 22
🔔 Event: property_change
Count: 87
Properties:
📝 phone: 5 changes
📝 country: 11 changes
📝 domain: 13 changes
📝 industry: 8 changes
📝 name: 27 changes
📝 hubspot_owner_id: 23 changes
🔔 Event: association_change
Count: 203
📦 Object Type: contact
🔔 Event: property_change
Count: 337
Properties:
📝 jobtitle: 19 changes
📝 hubspot_owner_id: 35 changes
📝 email: 83 changes
📝 associatedcompanyid: 89 changes
📝 mobilephone: 16 changes
📝 phone: 14 changes
📝 country: 17 changes
📝 firstname: 33 changes
📝 lastname: 31 changes
🔔 Event: creation
Count: 24
🔔 Event: association_change
Count: 202
📦 Object Type: deal
🔔 Event: property_change
Count: 16
Properties:
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
📝 dealname: 2 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
📝 sites: 1 changes
📝 customers: 1 changes
📝 deal_icp: 1 changes
📝 integrations: 1 changes
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 3
INFO Looking for metrics: Config 803 (E3 - 854), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
69493
|
|
69493
|
NULL
|
0
|
2026-04-22T08:12:05.086715+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845525086_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
📝 dealname: 3 changes
📝 use_case: 3 📝 dealname: 3 changes
📝 use_case: 3 changes
📝 vertical: 3 changes
📝 source: 4 changes
📝 region: 3 changes
INFO Looking for metrics: Config 317 (PureGroup - 335), Date 2026-04-16.
📊 Webhook Metrics for Config 317 (PureGroup - 335)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 14
Properties:
📝 hubspot_owner_id: 4 changes
📝 email: 1 changes
📝 jobtitle: 2 changes
📝 lastname: 2 changes
📝 firstname: 3 changes
📝 associatedcompanyid: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 9
🔔 Event: creation
Count: 1
📦 Object Type: company
🔔 Event: association_change
Count: 9
INFO Looking for metrics: Config 480 (Flo Recruit - 506), Date 2026-04-16.
📊 Webhook Metrics for Config 480 (Flo Recruit - 506)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 27
🔔 Event: property_change
Count: 9
Properties:
📝 domain: 4 changes
📝 name: 3 changes
📝 hubspot_owner_id: 2 changes
🔔 Event: creation
Count: 4
📦 Object Type: contact
🔔 Event: association_change
Count: 29
🔔 Event: creation
Count: 17
🔔 Event: property_change
Count: 179
Properties:
📝 jobtitle: 85 changes
📝 mobilephone: 1 changes
📝 phone: 2 changes
📝 firstname: 27 changes
📝 lastname: 22 changes
📝 hubspot_owner_id: 14 changes
📝 email: 19 changes
📝 associatedcompanyid: 9 changes
📦 Object Type: deal
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 17
Properties:
📝 dealstage: 7 changes
📝 hs_deal_stage_probability: 6 changes
📝 hs_manual_forecast_category: 3 changes
📝 closedate: 1 changes
INFO Looking for metrics: Config 48 (CleanCloud - 51), Date 2026-04-16.
📊 Webhook Metrics for Config 48 (CleanCloud - 51)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 90
Properties:
📝 hubspot_owner_id: 46 changes
📝 country: 22 changes
📝 name: 22 changes
🔔 Event: creation
Count: 21
🔔 Event: association_change
Count: 97
📦 Object Type: contact
🔔 Event: creation
Count: 30
🔔 Event: association_change
Count: 70
🔔 Event: property_change
Count: 246
Properties:
📝 email: 45 changes
📝 lastname: 26 changes
📝 phone: 28 changes
📝 country: 24 changes
📝 firstname: 41 changes
📝 hubspot_owner_id: 60 changes
📝 associatedcompanyid: 21 changes
📝 jobtitle: 1 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 489
Properties:
📝 dealstage: 87 changes
📝 hs_deal_stage_probability: 103 changes
📝 business_type__auto_from_contact_property_: 7 changes
📝 currently_using: 27 changes
📝 deal_summary_ai_: 99 changes
📝 are_you_currently_doing_p_d_: 19 changes
📝 timeline: 21 changes
📝 deal_source: 20 changes
📝 primary_reason_: 23 changes
📝 no__orders_processed_every_month: 19 changes
📝 hubspot_owner_id: 7 changes
📝 closedate: 35 changes
📝 services_offered: 6 changes
📝 dealname: 2 changes
📝 who_else_are_you_talking_to_: 3 changes
📝 deal_currency_code: 2 changes
📝 amount: 2 changes
📝 tagging: 2 changes
📝 pipeline: 2 changes
📝 hardware_setup: 1 changes
📝 data_import: 2 changes
🔔 Event: creation
Count: 29
🔔 Event: association_change
Count: 83
INFO Looking for metrics: Config 675 (Juriba - 695), Date 2026-04-16.
📊 Webhook Metrics for Config 675 (Juriba - 695)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 620
📦 Object Type: contact
🔔 Event: property_change
Count: 237
Properties:
📝 jobtitle: 13 changes
📝 phone: 10 changes
📝 firstname: 9 changes
📝 country: 6 changes
📝 hubspot_owner_id: 18 changes
📝 email: 9 changes
📝 mobilephone: 7 changes
📝 lastname: 9 changes
📝 associatedcompanyid: 156 changes
🔔 Event: association_change
Count: 608
🔔 Event: creation
Count: 9
📦 Object Type: deal
🔔 Event: association_change
Count: 12
INFO Looking for metrics: Config 1021 (Gen3 Marketing - 1089), Date 2026-04-16.
📊 Webhook Metrics for Config 1021 (Gen3 Marketing - 1089)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 54
Properties:
📝 domain: 15 changes
📝 hubspot_owner_id: 17 changes
📝 name: 17 changes
📝 industry: 2 changes
📝 phone: 2 changes
📝 country: 1 changes
🔔 Event: creation
Count: 13
🔔 Event: association_change
Count: 183
📦 Object Type: contact
🔔 Event: property_change
Count: 134
Properties:
📝 email: 12 changes
📝 phone: 11 changes
📝 firstname: 10 changes
📝 lastname: 10 changes
📝 associatedcompanyid: 43 changes
📝 hubspot_owner_id: 33 changes
📝 jobtitle: 8 changes
📝 country: 1 changes
📝 mobilephone: 6 changes
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 155
📦 Object Type: deal
🔔 Event: association_change
Count: 28
🔔 Event: property_change
Count: 18
Properties:
📝 amount: 3 changes
📝 dealstage: 3 changes
📝 hs_deal_stage_probability: 6 changes
📝 service_type_updated: 2 changes
📝 hs_next_step: 2 changes
📝 closedate: 1 changes
📝 days_to_close: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 716 (Terpene Belt Farms - 737), Date 2026-04-16.
📊 Webhook Metrics for Config 716 (Terpene Belt Farms - 737)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 72
Properties:
📝 phone: 8 changes
📝 email: 7 changes
📝 country: 16 changes
📝 lastname: 12 changes
📝 firstname: 10 changes
📝 mobilephone: 3 changes
📝 hubspot_owner_id: 5 changes
📝 jobtitle: 9 changes
📝 associatedcompanyid: 2 changes
🔔 Event: association_change
Count: 27
🔔 Event: creation
Count: 7
📦 Object Type: deal
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 47
🔔 Event: property_change
Count: 79
Properties:
📝 hs_deal_stage_probability: 24 changes
📝 deal_currency_code: 6 changes
📝 amount: 13 changes
📝 closedate: 9 changes
📝 dealstage: 18 changes
📝 pipeline: 3 changes
📝 dealname: 3 changes
📝 hubspot_owner_id: 3 changes
📦 Object Type: company
🔔 Event: property_change
Count: 5
Properties:
📝 hubspot_owner_id: 1 changes
📝 name: 3 changes
📝 country: 1 changes
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 921 (Matrak - 968), Date 2026-04-16.
📊 Webhook Metrics for Config 921 (Matrak - 968)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 17
Properties:
📝 hubspot_owner_id: 6 changes
📝 email: 3 changes
📝 associatedcompanyid: 4 changes
📝 phone: 1 changes
📝 jobtitle: 1 changes
📝 lastname: 1 changes
📝 firstname: 1 changes
🔔 Event: creation
Count: 3
🔔 Event: association_change
Count: 8
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 2
Properties:
📝 name: 1 changes
📝 domain: 1 changes
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: property_change
Count: 5
Properties:
📝 hubspot_owner_id: 4 changes
📝 amount: 1 changes
INFO Looking for metrics: Config 1054 (Temelio - 1118), Date 2026-04-16.
📊 Webhook Metrics for Config 1054 (Temelio - 1118)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 80
Properties:
📝 hs_next_step: 2 changes
📝 dealstage: 15 changes
📝 hs_manual_forecast_category: 12 changes
📝 hubspot_owner_id: 1 changes
📝 amount: 2 changes
📝 closedate: 35 changes
📝 hs_deal_stage_probability: 13 changes
🔔 Event: association_change
Count: 85
📦 Object Type: contact
🔔 Event: association_change
Count: 7838
🔔 Event: property_change
Count: 1938
Properties:
📝 associatedcompanyid: 1828 changes
📝 phone: 5 changes
📝 lastname: 6 changes
📝 email: 9 changes
📝 jobtitle: 7 changes
📝 firstname: 7 changes
📝 hubspot_owner_id: 76 changes
🔔 Event: creation
Count: 15
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 1609
Properties:
📝 domain: 72 changes
📝 name: 6 changes
📝 hubspot_owner_id: 1047 changes
📝 phone: 431 changes
📝 country: 7 changes
📝 industry: 46 changes
🔔 Event: association_change
Count: 7911
INFO Looking for metrics: Config 1060 (Velatir - 1122), Date 2026-04-16.
📊 Webhook Metrics for Config 1060 (Velatir - 1122)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 205
Properties:
📝 email: 49 changes
📝 hubspot_owner_id: 64 changes
📝 firstname: 15 changes
📝 lastname: 14 changes
📝 associatedcompanyid: 50 changes
📝 phone: 5 changes
📝 jobtitle: 5 changes
📝 country: 3 changes
🔔 Event: creation
Count: 50
🔔 Event: association_change
Count: 114
📦 Object Type: company
🔔 Event: creation
Count: 21
🔔 Event: property_change
Count: 496
Properties:
📝 phone: 198 changes
📝 domain: 24 changes
📝 country: 18 changes
📝 name: 18 changes
📝 industry: 13 changes
📝 hubspot_owner_id: 225 changes
🔔 Event: association_change
Count: 126
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 55
Properties:
📝 hs_deal_stage_probability: 18 changes
📝 deal_currency_code: 8 changes
📝 amount: 10 changes
📝 hubspot_owner_id: 6 changes
📝 dealtype: 3 changes
📝 dealname: 4 changes
📝 dealstage: 6 changes
🔔 Event: association_change
Count: 36
INFO Looking for metrics: Config 272 (Bonham & Brook - 290), Date 2026-04-16.
📊 Webhook Metrics for Config 272 (Bonham & Brook - 290)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 33
🔔 Event: association_change
Count: 212
🔔 Event: property_change
Count: 221
Properties:
📝 hubspot_owner_id: 58 changes
📝 country: 33 changes
📝 name: 36 changes
📝 domain: 33 changes
📝 phone: 34 changes
📝 industry: 27 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 571
Properties:
📝 notes_last_updated: 323 changes
📝 notes_last_contacted: 193 changes
📝 hs_deal_stage_probability: 21 changes
📝 dealstage: 13 changes
📝 amount: 8 changes
📝 dealname: 8 changes
📝 hs_manual_forecast_category: 3 changes
📝 closedate: 1 changes
📝 pipeline: 1 changes
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 31
📦 Object Type: contact
🔔 Event: property_change
Count: 580
Properties:
📝 country: 42 changes
📝 mobilephone: 25 changes
📝 jobtitle: 66 changes
📝 phone: 69 changes
📝 email: 70 changes
📝 hubspot_owner_id: 100 changes
📝 firstname: 66 changes
📝 lastname: 65 changes
📝 associatedcompanyid: 77 changes
🔔 Event: association_change
Count: 195
🔔 Event: creation
Count: 71
INFO Looking for metrics: Config 989 (rtaoutdoor.com - 1058), Date 2026-04-16.
📊 Webhook Metrics for Config 989 (rtaoutdoor.com - 1058)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 413
🔔 Event: association_change
Count: 235
🔔 Event: property_change
Count: 1375
Properties:
📝 email: 414 changes
📝 hubspot_owner_id: 453 changes
📝 lastname: 94 changes
📝 firstname: 94 changes
📝 phone: 257 changes
📝 jobtitle: 8 changes
📝 associatedcompanyid: 52 changes
📝 mobilephone: 2 changes
📝 country: 1 changes
📦 Object Type: company
🔔 Event: creation
Count: 58
🔔 Event: association_change
Count: 224
🔔 Event: property_change
Count: 116
Properties:
📝 hubspot_owner_id: 58 changes
📝 name: 58 changes
📦 Object Type: deal
🔔 Event: creation
Count: 116
🔔 Event: property_change
Count: 1053
Properties:
📝 hs_deal_stage_probability: 269 changes
📝 hubspot_owner_id: 161 changes
📝 amount: 120 changes
📝 amount_in_home_currency: 120 changes
📝 closedate: 105 changes
📝 dealstage: 190 changes
📝 amount_stamp___stage_deposit_received: 16 changes
📝 deal_currency_code: 68 changes
📝 dealname: 3 changes
📝 pipeline: 1 changes
🔔 Event: association_change
Count: 243
INFO Looking for metrics: Config 64 (SalaryFinance - 70), Date 2026-04-16.
📊 Webhook Metrics for Config 64 (SalaryFinance - 70)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 11
Properties:
📝 hubspot_owner_id: 5 changes
📝 domain: 2 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 name: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 92
📦 Object Type: deal
🔔 Event: property_change
Count: 3
Properties:
📝 closedate: 1 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
🔔 Event: association_change
Count: 4
📦 Object Type: contact
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 181
Properties:
📝 email: 16 changes
📝 associatedcompanyid: 13 changes
📝 country: 11 changes
📝 hubspot_owner_id: 117 changes
📝 firstname: 8 changes
📝 jobtitle: 8 changes
📝 lastname: 8 changes
🔔 Event: association_change
Count: 96
INFO Looking for metrics: Config 1056 (Chromatic - 1119), Date 2026-04-16.
📊 Webhook Metrics for Config 1056 (Chromatic - 1119)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 445
🔔 Event: property_change
Count: 2421
Properties:
📝 email: 438 changes
📝 associatedcompanyid: 405 changes
📝 jobtitle: 760 changes
📝 firstname: 423 changes
📝 lastname: 320 changes
📝 hubspot_owner_id: 66 changes
📝 country: 2 changes
📝 phone: 3 changes
📝 hs_avatar_filemanager_key: 3 changes
📝 mobilephone: 1 changes
🔔 Event: association_change
Count: 841
📦 Object Type: deal
🔔 Event: property_change
Count: 94
Properties:
📝 dealstage: 11 changes
📝 hs_deal_stage_probability: 15 changes
📝 closedate: 16 changes
📝 hs_manual_forecast_category: 13 changes
📝 hs_next_step: 20 changes
📝 amount: 5 changes
📝 dealname: 7 changes
📝 hubspot_owner_id: 2 changes
📝 dealtype: 3 changes
📝 createdate: 2 changes
🔔 Event: creation
Count: 4
🔔 Event: association_change
Count: 13
📦 Object Type: company
🔔 Event: association_change
Count: 844
🔔 Event: property_change
Count: 202
Properties:
📝 country: 54 changes
📝 hubspot_owner_id: 47 changes
📝 domain: 57 changes
📝 name: 43 changes
📝 industry: 1 changes
🔔 Event: creation
Count: 57
INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16.
📊 Webhook Metrics for Config 533 (Connectd - 559)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 720
🔔 Event: property_change
Count: 3906
Properties:
📝 mobilephone: 15 changes
📝 lastname: 766 changes
📝 phone: 699 changes
📝 firstname: 773 changes
📝 email: 725 changes
📝 hubspot_owner_id: 757 changes
📝 jobtitle: 99 changes
📝 country: 72 changes
🔔 Event: association_change
Count: 864
📦 Object Type: deal
🔔 Event: property_change
Count: 3984
Properties:
📝 hs_deal_stage_probability: 1843 changes
📝 dealstage: 1316 changes
📝 closedate: 612 changes
📝 createdate: 7 changes
📝 hubspot_owner_id: 134 changes
📝 amount: 23 changes
📝 amount_in_home_currency: 30 changes
📝 dealname: 15 changes
📝 deal_currency_code: 3 changes
📝 pipeline: 1 changes
🔔 Event: association_change
Count: 780
🔔 Event: creation
Count: 648
📦 Object Type: company
🔔 Event: association_change
Count: 88
INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16.
📊 Webhook Metrics for Config 1006 (Dovetail Software - 1076)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 9
Properties:
📝 hs_manual_forecast_category: 2 changes
📝 hs_deal_stage_probability: 3 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
🔔 Event: creation
Count: 2
📦 Object Type: contact
🔔 Event: property_change
Count: 167
Properties:
📝 associatedcompanyid: 11 changes
📝 lastname: 11 changes
📝 phone: 11 changes
📝 hubspot_owner_id: 83 changes
📝 mobilephone: 9 changes
📝 firstname: 10 changes
📝 country: 13 changes
📝 email: 9 changes
📝 jobtitle: 10 changes
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 25
📦 Object Type: company
🔔 Event: association_change
Count: 27
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 14
Properties:
📝 hubspot_owner_id: 7 changes
📝 phone: 2 changes
📝 name: 1 changes
📝 country: 2 changes
📝 industry: 1 changes
📝 domain: 1 changes
INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16.
📊 Webhook Metrics for Config 154 (Learnerbly - 172)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 2
Properties:
📝 hubspot_owner_id: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 4
📦 Object Type: company
🔔 Event: association_change
Count: 4
📦 Object Type: deal
🔔 Event: property_change
Count: 3
Properties:
📝 amount: 1 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16.
📊 Webhook Metrics for Config 892 (Logiwa - 942)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 55
🔔 Event: property_change
Count: 322
Properties:
📝 jobtitle: 56 changes
📝 lastname: 57 changes
📝 firstname: 59 changes
📝 country: 4 changes
📝 email: 55 changes
📝 hubspot_owner_id: 38 changes
📝 associatedcompanyid: 47 changes
📝 phone: 6 changes
🔔 Event: association_change
Count: 96
📦 Object Type: company
🔔 Event: creation
Count: 16
🔔 Event: property_change
Count: 42
Properties:
📝 name: 21 changes
📝 domain: 16 changes
📝 hubspot_owner_id: 5 changes
🔔 Event: association_change
Count: 96
📦 Object Type: deal
🔔 Event: property_change
Count: 151
Properties:
📝 notes_last_updated: 139 changes
📝 closedate: 3 changes
📝 dealstage: 3 changes
📝 current_wms: 1 changes
📝 hs_deal_stage_probability: 3 changes
📝 amount: 1 changes
📝 hs_manual_forecast_category: 1 changes
INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16.
📊 Webhook Metrics for Config 882 (GoGlobal - 933)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 837
Properties:
📝 hs_next_step: 93 changes
📝 situation: 80 changes
📝 compelling_event: 76 changes
📝 decision_process: 72 changes
📝 decision_criteria: 76 changes
📝 problem: 50 changes
📝 impact: 50 changes
📝 amount: 73 changes
📝 amount_in_home_currency: 63 changes
📝 closedate: 19 changes
📝 dealstage: 39 changes
📝 description: 6 changes
📝 hs_deal_stage_probability: 51 changes
📝 dealname: 22 changes
📝 deal_currency_code: 24 changes
📝 hs_manual_forecast_category: 18 changes
📝 hiring_countries: 4 changes
📝 leadtype: 2 changes
📝 manager_forecast_notes: 10 changes
📝 competitors____please_specify: 1 changes
📝 closed_won_reason_jiminny_ai: 1 changes
📝 client_handover_notes_jiminny_ai: 1 changes
📝 lead_source_deal: 2 changes
📝 hubspot_owner_id: 4 changes
🔔 Event: association_change
Count: 48
📦 Object Type: company
🔔 Event: property_change
Count: 759
Properties:
📝 domain: 148 changes
📝 name: 140 changes
📝 country: 135 changes
📝 phone: 115 changes
📝 industry: 124 changes
📝 hubspot_owner_id: 97 changes
🔔 Event: creation
Count: 147
🔔 Event: association_change
Count: 1369
📦 Object Type: contact
🔔 Event: property_change
Count: 4203
Properties:
📝 lastname: 666 changes
📝 email: 600 changes
📝 hubspot_owner_id: 562 changes
📝 firstname: 608 changes
📝 jobtitle: 555 changes
📝 country: 585 changes
📝 associatedcompanyid: 585 changes
📝 phone: 31 changes
📝 mobilephone: 11 changes
🔔 Event: creation
Count: 600
🔔 Event: association_change
Count: 1349
INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"📝\u0000 dealname: 3 changes\n 📝\u0000 use_case: 3 changes\n 📝\u0000 vertical: 3 changes\n 📝\u0000 source: 4 changes\n 📝\u0000 region: 3 changes\n\n\n INFO Looking for metrics: Config 317 (PureGroup - 335), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 317 (PureGroup - 335)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 email: 1 changes\n 📝\u0000 jobtitle: 2 changes\n 📝\u0000 lastname: 2 changes\n 📝\u0000 firstname: 3 changes\n 📝\u0000 associatedcompanyid: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 9\n\n\n INFO Looking for metrics: Config 480 (Flo Recruit - 506), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 480 (Flo Recruit - 506)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: property_change\n Count: 9\n Properties:\n 📝\u0000 domain: 4 changes\n 📝\u0000 name: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 29\n\n 🔔\u0000 Event: creation\n Count: 17\n\n 🔔\u0000 Event: property_change\n Count: 179\n Properties:\n 📝\u0000 jobtitle: 85 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 firstname: 27 changes\n 📝\u0000 lastname: 22 changes\n 📝\u0000 hubspot_owner_id: 14 changes\n 📝\u0000 email: 19 changes\n 📝\u0000 associatedcompanyid: 9 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 hs_deal_stage_probability: 6 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n 📝\u0000 closedate: 1 changes\n\n\n INFO Looking for metrics: Config 48 (CleanCloud - 51), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 48 (CleanCloud - 51)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 90\n Properties:\n 📝\u0000 hubspot_owner_id: 46 changes\n 📝\u0000 country: 22 changes\n 📝\u0000 name: 22 changes\n\n 🔔\u0000 Event: creation\n Count: 21\n\n 🔔\u0000 Event: association_change\n Count: 97\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 30\n\n 🔔\u0000 Event: association_change\n Count: 70\n\n 🔔\u0000 Event: property_change\n Count: 246\n Properties:\n 📝\u0000 email: 45 changes\n 📝\u0000 lastname: 26 changes\n 📝\u0000 phone: 28 changes\n 📝\u0000 country: 24 changes\n 📝\u0000 firstname: 41 changes\n 📝\u0000 hubspot_owner_id: 60 changes\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 jobtitle: 1 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 489\n Properties:\n 📝\u0000 dealstage: 87 changes\n 📝\u0000 hs_deal_stage_probability: 103 changes\n 📝\u0000 business_type__auto_from_contact_property_: 7 changes\n 📝\u0000 currently_using: 27 changes\n 📝\u0000 deal_summary_ai_: 99 changes\n 📝\u0000 are_you_currently_doing_p_d_: 19 changes\n 📝\u0000 timeline: 21 changes\n 📝\u0000 deal_source: 20 changes\n 📝\u0000 primary_reason_: 23 changes\n 📝\u0000 no__orders_processed_every_month: 19 changes\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 closedate: 35 changes\n 📝\u0000 services_offered: 6 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 who_else_are_you_talking_to_: 3 changes\n 📝\u0000 deal_currency_code: 2 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 tagging: 2 changes\n 📝\u0000 pipeline: 2 changes\n 📝\u0000 hardware_setup: 1 changes\n 📝\u0000 data_import: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 29\n\n 🔔\u0000 Event: association_change\n Count: 83\n\n\n INFO Looking for metrics: Config 675 (Juriba - 695), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 675 (Juriba - 695)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 620\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 237\n Properties:\n 📝\u0000 jobtitle: 13 changes\n 📝\u0000 phone: 10 changes\n 📝\u0000 firstname: 9 changes\n 📝\u0000 country: 6 changes\n 📝\u0000 hubspot_owner_id: 18 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 mobilephone: 7 changes\n 📝\u0000 lastname: 9 changes\n 📝\u0000 associatedcompanyid: 156 changes\n\n 🔔\u0000 Event: association_change\n Count: 608\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 12\n\n\n INFO Looking for metrics: Config 1021 (Gen3 Marketing - 1089), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1021 (Gen3 Marketing - 1089)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 54\n Properties:\n 📝\u0000 domain: 15 changes\n 📝\u0000 hubspot_owner_id: 17 changes\n 📝\u0000 name: 17 changes\n 📝\u0000 industry: 2 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 13\n\n 🔔\u0000 Event: association_change\n Count: 183\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 134\n Properties:\n 📝\u0000 email: 12 changes\n 📝\u0000 phone: 11 changes\n 📝\u0000 firstname: 10 changes\n 📝\u0000 lastname: 10 changes\n 📝\u0000 associatedcompanyid: 43 changes\n 📝\u0000 hubspot_owner_id: 33 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 mobilephone: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 155\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 28\n\n 🔔\u0000 Event: property_change\n Count: 18\n Properties:\n 📝\u0000 amount: 3 changes\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 hs_deal_stage_probability: 6 changes\n 📝\u0000 service_type_updated: 2 changes\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 days_to_close: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 716 (Terpene Belt Farms - 737), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 716 (Terpene Belt Farms - 737)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 72\n Properties:\n 📝\u0000 phone: 8 changes\n 📝\u0000 email: 7 changes\n 📝\u0000 country: 16 changes\n 📝\u0000 lastname: 12 changes\n 📝\u0000 firstname: 10 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 jobtitle: 9 changes\n 📝\u0000 associatedcompanyid: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: creation\n Count: 7\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 47\n\n 🔔\u0000 Event: property_change\n Count: 79\n Properties:\n 📝\u0000 hs_deal_stage_probability: 24 changes\n 📝\u0000 deal_currency_code: 6 changes\n 📝\u0000 amount: 13 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 dealstage: 18 changes\n 📝\u0000 pipeline: 3 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 hubspot_owner_id: 3 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 name: 3 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 921 (Matrak - 968), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 921 (Matrak - 968)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 email: 3 changes\n 📝\u0000 associatedcompanyid: 4 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 jobtitle: 1 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 name: 1 changes\n 📝\u0000 domain: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 amount: 1 changes\n\n\n INFO Looking for metrics: Config 1054 (Temelio - 1118), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1054 (Temelio - 1118)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 80\n Properties:\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 dealstage: 15 changes\n 📝\u0000 hs_manual_forecast_category: 12 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 35 changes\n 📝\u0000 hs_deal_stage_probability: 13 changes\n\n 🔔\u0000 Event: association_change\n Count: 85\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 7838\n\n 🔔\u0000 Event: property_change\n Count: 1938\n Properties:\n 📝\u0000 associatedcompanyid: 1828 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 lastname: 6 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 firstname: 7 changes\n 📝\u0000 hubspot_owner_id: 76 changes\n\n 🔔\u0000 Event: creation\n Count: 15\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 1609\n Properties:\n 📝\u0000 domain: 72 changes\n 📝\u0000 name: 6 changes\n 📝\u0000 hubspot_owner_id: 1047 changes\n 📝\u0000 phone: 431 changes\n 📝\u0000 country: 7 changes\n 📝\u0000 industry: 46 changes\n\n 🔔\u0000 Event: association_change\n Count: 7911\n\n\n INFO Looking for metrics: Config 1060 (Velatir - 1122), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1060 (Velatir - 1122)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 205\n Properties:\n 📝\u0000 email: 49 changes\n 📝\u0000 hubspot_owner_id: 64 changes\n 📝\u0000 firstname: 15 changes\n 📝\u0000 lastname: 14 changes\n 📝\u0000 associatedcompanyid: 50 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 jobtitle: 5 changes\n 📝\u0000 country: 3 changes\n\n 🔔\u0000 Event: creation\n Count: 50\n\n 🔔\u0000 Event: association_change\n Count: 114\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 21\n\n 🔔\u0000 Event: property_change\n Count: 496\n Properties:\n 📝\u0000 phone: 198 changes\n 📝\u0000 domain: 24 changes\n 📝\u0000 country: 18 changes\n 📝\u0000 name: 18 changes\n 📝\u0000 industry: 13 changes\n 📝\u0000 hubspot_owner_id: 225 changes\n\n 🔔\u0000 Event: association_change\n Count: 126\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 55\n Properties:\n 📝\u0000 hs_deal_stage_probability: 18 changes\n 📝\u0000 deal_currency_code: 8 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 dealname: 4 changes\n 📝\u0000 dealstage: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 36\n\n\n INFO Looking for metrics: Config 272 (Bonham & Brook - 290), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 272 (Bonham & Brook - 290)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 33\n\n 🔔\u0000 Event: association_change\n Count: 212\n\n 🔔\u0000 Event: property_change\n Count: 221\n Properties:\n 📝\u0000 hubspot_owner_id: 58 changes\n 📝\u0000 country: 33 changes\n 📝\u0000 name: 36 changes\n 📝\u0000 domain: 33 changes\n 📝\u0000 phone: 34 changes\n 📝\u0000 industry: 27 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 571\n Properties:\n 📝\u0000 notes_last_updated: 323 changes\n 📝\u0000 notes_last_contacted: 193 changes\n 📝\u0000 hs_deal_stage_probability: 21 changes\n 📝\u0000 dealstage: 13 changes\n 📝\u0000 amount: 8 changes\n 📝\u0000 dealname: 8 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 31\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 580\n Properties:\n 📝\u0000 country: 42 changes\n 📝\u0000 mobilephone: 25 changes\n 📝\u0000 jobtitle: 66 changes\n 📝\u0000 phone: 69 changes\n 📝\u0000 email: 70 changes\n 📝\u0000 hubspot_owner_id: 100 changes\n 📝\u0000 firstname: 66 changes\n 📝\u0000 lastname: 65 changes\n 📝\u0000 associatedcompanyid: 77 changes\n\n 🔔\u0000 Event: association_change\n Count: 195\n\n 🔔\u0000 Event: creation\n Count: 71\n\n\n INFO Looking for metrics: Config 989 (rtaoutdoor.com - 1058), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 989 (rtaoutdoor.com - 1058)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 413\n\n 🔔\u0000 Event: association_change\n Count: 235\n\n 🔔\u0000 Event: property_change\n Count: 1375\n Properties:\n 📝\u0000 email: 414 changes\n 📝\u0000 hubspot_owner_id: 453 changes\n 📝\u0000 lastname: 94 changes\n 📝\u0000 firstname: 94 changes\n 📝\u0000 phone: 257 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 associatedcompanyid: 52 changes\n 📝\u0000 mobilephone: 2 changes\n 📝\u0000 country: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 58\n\n 🔔\u0000 Event: association_change\n Count: 224\n\n 🔔\u0000 Event: property_change\n Count: 116\n Properties:\n 📝\u0000 hubspot_owner_id: 58 changes\n 📝\u0000 name: 58 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 116\n\n 🔔\u0000 Event: property_change\n Count: 1053\n Properties:\n 📝\u0000 hs_deal_stage_probability: 269 changes\n 📝\u0000 hubspot_owner_id: 161 changes\n 📝\u0000 amount: 120 changes\n 📝\u0000 amount_in_home_currency: 120 changes\n 📝\u0000 closedate: 105 changes\n 📝\u0000 dealstage: 190 changes\n 📝\u0000 amount_stamp___stage_deposit_received: 16 changes\n 📝\u0000 deal_currency_code: 68 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 243\n\n\n INFO Looking for metrics: Config 64 (SalaryFinance - 70), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 64 (SalaryFinance - 70)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 domain: 2 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 92\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 181\n Properties:\n 📝\u0000 email: 16 changes\n 📝\u0000 associatedcompanyid: 13 changes\n 📝\u0000 country: 11 changes\n 📝\u0000 hubspot_owner_id: 117 changes\n 📝\u0000 firstname: 8 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 lastname: 8 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n\n INFO Looking for metrics: Config 1056 (Chromatic - 1119), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1056 (Chromatic - 1119)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 445\n\n 🔔\u0000 Event: property_change\n Count: 2421\n Properties:\n 📝\u0000 email: 438 changes\n 📝\u0000 associatedcompanyid: 405 changes\n 📝\u0000 jobtitle: 760 changes\n 📝\u0000 firstname: 423 changes\n 📝\u0000 lastname: 320 changes\n 📝\u0000 hubspot_owner_id: 66 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 phone: 3 changes\n 📝\u0000 hs_avatar_filemanager_key: 3 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 841\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 94\n Properties:\n 📝\u0000 dealstage: 11 changes\n 📝\u0000 hs_deal_stage_probability: 15 changes\n 📝\u0000 closedate: 16 changes\n 📝\u0000 hs_manual_forecast_category: 13 changes\n 📝\u0000 hs_next_step: 20 changes\n 📝\u0000 amount: 5 changes\n 📝\u0000 dealname: 7 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 createdate: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 🔔\u0000 Event: association_change\n Count: 13\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 844\n\n 🔔\u0000 Event: property_change\n Count: 202\n Properties:\n 📝\u0000 country: 54 changes\n 📝\u0000 hubspot_owner_id: 47 changes\n 📝\u0000 domain: 57 changes\n 📝\u0000 name: 43 changes\n 📝\u0000 industry: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 57\n\n\n INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 533 (Connectd - 559)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 720\n\n 🔔\u0000 Event: property_change\n Count: 3906\n Properties:\n 📝\u0000 mobilephone: 15 changes\n 📝\u0000 lastname: 766 changes\n 📝\u0000 phone: 699 changes\n 📝\u0000 firstname: 773 changes\n 📝\u0000 email: 725 changes\n 📝\u0000 hubspot_owner_id: 757 changes\n 📝\u0000 jobtitle: 99 changes\n 📝\u0000 country: 72 changes\n\n 🔔\u0000 Event: association_change\n Count: 864\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3984\n Properties:\n 📝\u0000 hs_deal_stage_probability: 1843 changes\n 📝\u0000 dealstage: 1316 changes\n 📝\u0000 closedate: 612 changes\n 📝\u0000 createdate: 7 changes\n 📝\u0000 hubspot_owner_id: 134 changes\n 📝\u0000 amount: 23 changes\n 📝\u0000 amount_in_home_currency: 30 changes\n 📝\u0000 dealname: 15 changes\n 📝\u0000 deal_currency_code: 3 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 780\n\n 🔔\u0000 Event: creation\n Count: 648\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 88\n\n\n INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1006 (Dovetail Software - 1076)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 9\n Properties:\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 167\n Properties:\n 📝\u0000 associatedcompanyid: 11 changes\n 📝\u0000 lastname: 11 changes\n 📝\u0000 phone: 11 changes\n 📝\u0000 hubspot_owner_id: 83 changes\n 📝\u0000 mobilephone: 9 changes\n 📝\u0000 firstname: 10 changes\n 📝\u0000 country: 13 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 jobtitle: 10 changes\n\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 25\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 domain: 1 changes\n\n\n INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 154 (Learnerbly - 172)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n\n INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 892 (Logiwa - 942)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 55\n\n 🔔\u0000 Event: property_change\n Count: 322\n Properties:\n 📝\u0000 jobtitle: 56 changes\n 📝\u0000 lastname: 57 changes\n 📝\u0000 firstname: 59 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 email: 55 changes\n 📝\u0000 hubspot_owner_id: 38 changes\n 📝\u0000 associatedcompanyid: 47 changes\n 📝\u0000 phone: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 42\n Properties:\n 📝\u0000 name: 21 changes\n 📝\u0000 domain: 16 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 151\n Properties:\n 📝\u0000 notes_last_updated: 139 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 current_wms: 1 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hs_manual_forecast_category: 1 changes\n\n\n INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 882 (GoGlobal - 933)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 837\n Properties:\n 📝\u0000 hs_next_step: 93 changes\n 📝\u0000 situation: 80 changes\n 📝\u0000 compelling_event: 76 changes\n 📝\u0000 decision_process: 72 changes\n 📝\u0000 decision_criteria: 76 changes\n 📝\u0000 problem: 50 changes\n 📝\u0000 impact: 50 changes\n 📝\u0000 amount: 73 changes\n 📝\u0000 amount_in_home_currency: 63 changes\n 📝\u0000 closedate: 19 changes\n 📝\u0000 dealstage: 39 changes\n 📝\u0000 description: 6 changes\n 📝\u0000 hs_deal_stage_probability: 51 changes\n 📝\u0000 dealname: 22 changes\n 📝\u0000 deal_currency_code: 24 changes\n 📝\u0000 hs_manual_forecast_category: 18 changes\n 📝\u0000 hiring_countries: 4 changes\n 📝\u0000 leadtype: 2 changes\n 📝\u0000 manager_forecast_notes: 10 changes\n 📝\u0000 competitors____please_specify: 1 changes\n 📝\u0000 closed_won_reason_jiminny_ai: 1 changes\n 📝\u0000 client_handover_notes_jiminny_ai: 1 changes\n 📝\u0000 lead_source_deal: 2 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n\n 🔔\u0000 Event: association_change\n Count: 48\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 759\n Properties:\n 📝\u0000 domain: 148 changes\n 📝\u0000 name: 140 changes\n 📝\u0000 country: 135 changes\n 📝\u0000 phone: 115 changes\n 📝\u0000 industry: 124 changes\n 📝\u0000 hubspot_owner_id: 97 changes\n\n 🔔\u0000 Event: creation\n Count: 147\n\n 🔔\u0000 Event: association_change\n Count: 1369\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 4203\n Properties:\n 📝\u0000 lastname: 666 changes\n 📝\u0000 email: 600 changes\n 📝\u0000 hubspot_owner_id: 562 changes\n 📝\u0000 firstname: 608 changes\n 📝\u0000 jobtitle: 555 changes\n 📝\u0000 country: 585 changes\n 📝\u0000 associatedcompanyid: 585 changes\n 📝\u0000 phone: 31 changes\n 📝\u0000 mobilephone: 11 changes\n\n 🔔\u0000 Event: creation\n Count: 600\n\n 🔔\u0000 Event: association_change\n Count: 1349\n\n\n INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16.","depth":4,"value":"📝\u0000 dealname: 3 changes\n 📝\u0000 use_case: 3 changes\n 📝\u0000 vertical: 3 changes\n 📝\u0000 source: 4 changes\n 📝\u0000 region: 3 changes\n\n\n INFO Looking for metrics: Config 317 (PureGroup - 335), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 317 (PureGroup - 335)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 email: 1 changes\n 📝\u0000 jobtitle: 2 changes\n 📝\u0000 lastname: 2 changes\n 📝\u0000 firstname: 3 changes\n 📝\u0000 associatedcompanyid: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 9\n\n\n INFO Looking for metrics: Config 480 (Flo Recruit - 506), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 480 (Flo Recruit - 506)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: property_change\n Count: 9\n Properties:\n 📝\u0000 domain: 4 changes\n 📝\u0000 name: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 29\n\n 🔔\u0000 Event: creation\n Count: 17\n\n 🔔\u0000 Event: property_change\n Count: 179\n Properties:\n 📝\u0000 jobtitle: 85 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 firstname: 27 changes\n 📝\u0000 lastname: 22 changes\n 📝\u0000 hubspot_owner_id: 14 changes\n 📝\u0000 email: 19 changes\n 📝\u0000 associatedcompanyid: 9 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 hs_deal_stage_probability: 6 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n 📝\u0000 closedate: 1 changes\n\n\n INFO Looking for metrics: Config 48 (CleanCloud - 51), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 48 (CleanCloud - 51)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 90\n Properties:\n 📝\u0000 hubspot_owner_id: 46 changes\n 📝\u0000 country: 22 changes\n 📝\u0000 name: 22 changes\n\n 🔔\u0000 Event: creation\n Count: 21\n\n 🔔\u0000 Event: association_change\n Count: 97\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 30\n\n 🔔\u0000 Event: association_change\n Count: 70\n\n 🔔\u0000 Event: property_change\n Count: 246\n Properties:\n 📝\u0000 email: 45 changes\n 📝\u0000 lastname: 26 changes\n 📝\u0000 phone: 28 changes\n 📝\u0000 country: 24 changes\n 📝\u0000 firstname: 41 changes\n 📝\u0000 hubspot_owner_id: 60 changes\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 jobtitle: 1 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 489\n Properties:\n 📝\u0000 dealstage: 87 changes\n 📝\u0000 hs_deal_stage_probability: 103 changes\n 📝\u0000 business_type__auto_from_contact_property_: 7 changes\n 📝\u0000 currently_using: 27 changes\n 📝\u0000 deal_summary_ai_: 99 changes\n 📝\u0000 are_you_currently_doing_p_d_: 19 changes\n 📝\u0000 timeline: 21 changes\n 📝\u0000 deal_source: 20 changes\n 📝\u0000 primary_reason_: 23 changes\n 📝\u0000 no__orders_processed_every_month: 19 changes\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 closedate: 35 changes\n 📝\u0000 services_offered: 6 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 who_else_are_you_talking_to_: 3 changes\n 📝\u0000 deal_currency_code: 2 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 tagging: 2 changes\n 📝\u0000 pipeline: 2 changes\n 📝\u0000 hardware_setup: 1 changes\n 📝\u0000 data_import: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 29\n\n 🔔\u0000 Event: association_change\n Count: 83\n\n\n INFO Looking for metrics: Config 675 (Juriba - 695), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 675 (Juriba - 695)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 620\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 237\n Properties:\n 📝\u0000 jobtitle: 13 changes\n 📝\u0000 phone: 10 changes\n 📝\u0000 firstname: 9 changes\n 📝\u0000 country: 6 changes\n 📝\u0000 hubspot_owner_id: 18 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 mobilephone: 7 changes\n 📝\u0000 lastname: 9 changes\n 📝\u0000 associatedcompanyid: 156 changes\n\n 🔔\u0000 Event: association_change\n Count: 608\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 12\n\n\n INFO Looking for metrics: Config 1021 (Gen3 Marketing - 1089), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1021 (Gen3 Marketing - 1089)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 54\n Properties:\n 📝\u0000 domain: 15 changes\n 📝\u0000 hubspot_owner_id: 17 changes\n 📝\u0000 name: 17 changes\n 📝\u0000 industry: 2 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 13\n\n 🔔\u0000 Event: association_change\n Count: 183\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 134\n Properties:\n 📝\u0000 email: 12 changes\n 📝\u0000 phone: 11 changes\n 📝\u0000 firstname: 10 changes\n 📝\u0000 lastname: 10 changes\n 📝\u0000 associatedcompanyid: 43 changes\n 📝\u0000 hubspot_owner_id: 33 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 mobilephone: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 155\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 28\n\n 🔔\u0000 Event: property_change\n Count: 18\n Properties:\n 📝\u0000 amount: 3 changes\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 hs_deal_stage_probability: 6 changes\n 📝\u0000 service_type_updated: 2 changes\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 days_to_close: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 716 (Terpene Belt Farms - 737), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 716 (Terpene Belt Farms - 737)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 72\n Properties:\n 📝\u0000 phone: 8 changes\n 📝\u0000 email: 7 changes\n 📝\u0000 country: 16 changes\n 📝\u0000 lastname: 12 changes\n 📝\u0000 firstname: 10 changes\n 📝\u0000 mobilephone: 3 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 jobtitle: 9 changes\n 📝\u0000 associatedcompanyid: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: creation\n Count: 7\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 47\n\n 🔔\u0000 Event: property_change\n Count: 79\n Properties:\n 📝\u0000 hs_deal_stage_probability: 24 changes\n 📝\u0000 deal_currency_code: 6 changes\n 📝\u0000 amount: 13 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 dealstage: 18 changes\n 📝\u0000 pipeline: 3 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 hubspot_owner_id: 3 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 name: 3 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 921 (Matrak - 968), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 921 (Matrak - 968)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 email: 3 changes\n 📝\u0000 associatedcompanyid: 4 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 jobtitle: 1 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 name: 1 changes\n 📝\u0000 domain: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 amount: 1 changes\n\n\n INFO Looking for metrics: Config 1054 (Temelio - 1118), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1054 (Temelio - 1118)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 80\n Properties:\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 dealstage: 15 changes\n 📝\u0000 hs_manual_forecast_category: 12 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 35 changes\n 📝\u0000 hs_deal_stage_probability: 13 changes\n\n 🔔\u0000 Event: association_change\n Count: 85\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 7838\n\n 🔔\u0000 Event: property_change\n Count: 1938\n Properties:\n 📝\u0000 associatedcompanyid: 1828 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 lastname: 6 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 firstname: 7 changes\n 📝\u0000 hubspot_owner_id: 76 changes\n\n 🔔\u0000 Event: creation\n Count: 15\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 1609\n Properties:\n 📝\u0000 domain: 72 changes\n 📝\u0000 name: 6 changes\n 📝\u0000 hubspot_owner_id: 1047 changes\n 📝\u0000 phone: 431 changes\n 📝\u0000 country: 7 changes\n 📝\u0000 industry: 46 changes\n\n 🔔\u0000 Event: association_change\n Count: 7911\n\n\n INFO Looking for metrics: Config 1060 (Velatir - 1122), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1060 (Velatir - 1122)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 205\n Properties:\n 📝\u0000 email: 49 changes\n 📝\u0000 hubspot_owner_id: 64 changes\n 📝\u0000 firstname: 15 changes\n 📝\u0000 lastname: 14 changes\n 📝\u0000 associatedcompanyid: 50 changes\n 📝\u0000 phone: 5 changes\n 📝\u0000 jobtitle: 5 changes\n 📝\u0000 country: 3 changes\n\n 🔔\u0000 Event: creation\n Count: 50\n\n 🔔\u0000 Event: association_change\n Count: 114\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 21\n\n 🔔\u0000 Event: property_change\n Count: 496\n Properties:\n 📝\u0000 phone: 198 changes\n 📝\u0000 domain: 24 changes\n 📝\u0000 country: 18 changes\n 📝\u0000 name: 18 changes\n 📝\u0000 industry: 13 changes\n 📝\u0000 hubspot_owner_id: 225 changes\n\n 🔔\u0000 Event: association_change\n Count: 126\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 55\n Properties:\n 📝\u0000 hs_deal_stage_probability: 18 changes\n 📝\u0000 deal_currency_code: 8 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 dealname: 4 changes\n 📝\u0000 dealstage: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 36\n\n\n INFO Looking for metrics: Config 272 (Bonham & Brook - 290), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 272 (Bonham & Brook - 290)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 33\n\n 🔔\u0000 Event: association_change\n Count: 212\n\n 🔔\u0000 Event: property_change\n Count: 221\n Properties:\n 📝\u0000 hubspot_owner_id: 58 changes\n 📝\u0000 country: 33 changes\n 📝\u0000 name: 36 changes\n 📝\u0000 domain: 33 changes\n 📝\u0000 phone: 34 changes\n 📝\u0000 industry: 27 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 571\n Properties:\n 📝\u0000 notes_last_updated: 323 changes\n 📝\u0000 notes_last_contacted: 193 changes\n 📝\u0000 hs_deal_stage_probability: 21 changes\n 📝\u0000 dealstage: 13 changes\n 📝\u0000 amount: 8 changes\n 📝\u0000 dealname: 8 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: association_change\n Count: 31\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 580\n Properties:\n 📝\u0000 country: 42 changes\n 📝\u0000 mobilephone: 25 changes\n 📝\u0000 jobtitle: 66 changes\n 📝\u0000 phone: 69 changes\n 📝\u0000 email: 70 changes\n 📝\u0000 hubspot_owner_id: 100 changes\n 📝\u0000 firstname: 66 changes\n 📝\u0000 lastname: 65 changes\n 📝\u0000 associatedcompanyid: 77 changes\n\n 🔔\u0000 Event: association_change\n Count: 195\n\n 🔔\u0000 Event: creation\n Count: 71\n\n\n INFO Looking for metrics: Config 989 (rtaoutdoor.com - 1058), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 989 (rtaoutdoor.com - 1058)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 413\n\n 🔔\u0000 Event: association_change\n Count: 235\n\n 🔔\u0000 Event: property_change\n Count: 1375\n Properties:\n 📝\u0000 email: 414 changes\n 📝\u0000 hubspot_owner_id: 453 changes\n 📝\u0000 lastname: 94 changes\n 📝\u0000 firstname: 94 changes\n 📝\u0000 phone: 257 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 associatedcompanyid: 52 changes\n 📝\u0000 mobilephone: 2 changes\n 📝\u0000 country: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 58\n\n 🔔\u0000 Event: association_change\n Count: 224\n\n 🔔\u0000 Event: property_change\n Count: 116\n Properties:\n 📝\u0000 hubspot_owner_id: 58 changes\n 📝\u0000 name: 58 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 116\n\n 🔔\u0000 Event: property_change\n Count: 1053\n Properties:\n 📝\u0000 hs_deal_stage_probability: 269 changes\n 📝\u0000 hubspot_owner_id: 161 changes\n 📝\u0000 amount: 120 changes\n 📝\u0000 amount_in_home_currency: 120 changes\n 📝\u0000 closedate: 105 changes\n 📝\u0000 dealstage: 190 changes\n 📝\u0000 amount_stamp___stage_deposit_received: 16 changes\n 📝\u0000 deal_currency_code: 68 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 243\n\n\n INFO Looking for metrics: Config 64 (SalaryFinance - 70), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 64 (SalaryFinance - 70)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 hubspot_owner_id: 5 changes\n 📝\u0000 domain: 2 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 92\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: property_change\n Count: 181\n Properties:\n 📝\u0000 email: 16 changes\n 📝\u0000 associatedcompanyid: 13 changes\n 📝\u0000 country: 11 changes\n 📝\u0000 hubspot_owner_id: 117 changes\n 📝\u0000 firstname: 8 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 lastname: 8 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n\n INFO Looking for metrics: Config 1056 (Chromatic - 1119), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1056 (Chromatic - 1119)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 445\n\n 🔔\u0000 Event: property_change\n Count: 2421\n Properties:\n 📝\u0000 email: 438 changes\n 📝\u0000 associatedcompanyid: 405 changes\n 📝\u0000 jobtitle: 760 changes\n 📝\u0000 firstname: 423 changes\n 📝\u0000 lastname: 320 changes\n 📝\u0000 hubspot_owner_id: 66 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 phone: 3 changes\n 📝\u0000 hs_avatar_filemanager_key: 3 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 841\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 94\n Properties:\n 📝\u0000 dealstage: 11 changes\n 📝\u0000 hs_deal_stage_probability: 15 changes\n 📝\u0000 closedate: 16 changes\n 📝\u0000 hs_manual_forecast_category: 13 changes\n 📝\u0000 hs_next_step: 20 changes\n 📝\u0000 amount: 5 changes\n 📝\u0000 dealname: 7 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 dealtype: 3 changes\n 📝\u0000 createdate: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 🔔\u0000 Event: association_change\n Count: 13\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 844\n\n 🔔\u0000 Event: property_change\n Count: 202\n Properties:\n 📝\u0000 country: 54 changes\n 📝\u0000 hubspot_owner_id: 47 changes\n 📝\u0000 domain: 57 changes\n 📝\u0000 name: 43 changes\n 📝\u0000 industry: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 57\n\n\n INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 533 (Connectd - 559)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 720\n\n 🔔\u0000 Event: property_change\n Count: 3906\n Properties:\n 📝\u0000 mobilephone: 15 changes\n 📝\u0000 lastname: 766 changes\n 📝\u0000 phone: 699 changes\n 📝\u0000 firstname: 773 changes\n 📝\u0000 email: 725 changes\n 📝\u0000 hubspot_owner_id: 757 changes\n 📝\u0000 jobtitle: 99 changes\n 📝\u0000 country: 72 changes\n\n 🔔\u0000 Event: association_change\n Count: 864\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3984\n Properties:\n 📝\u0000 hs_deal_stage_probability: 1843 changes\n 📝\u0000 dealstage: 1316 changes\n 📝\u0000 closedate: 612 changes\n 📝\u0000 createdate: 7 changes\n 📝\u0000 hubspot_owner_id: 134 changes\n 📝\u0000 amount: 23 changes\n 📝\u0000 amount_in_home_currency: 30 changes\n 📝\u0000 dealname: 15 changes\n 📝\u0000 deal_currency_code: 3 changes\n 📝\u0000 pipeline: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 780\n\n 🔔\u0000 Event: creation\n Count: 648\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 88\n\n\n INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1006 (Dovetail Software - 1076)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 9\n Properties:\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 dealstage: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 167\n Properties:\n 📝\u0000 associatedcompanyid: 11 changes\n 📝\u0000 lastname: 11 changes\n 📝\u0000 phone: 11 changes\n 📝\u0000 hubspot_owner_id: 83 changes\n 📝\u0000 mobilephone: 9 changes\n 📝\u0000 firstname: 10 changes\n 📝\u0000 country: 13 changes\n 📝\u0000 email: 9 changes\n 📝\u0000 jobtitle: 10 changes\n\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 25\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 domain: 1 changes\n\n\n INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 154 (Learnerbly - 172)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2\n Properties:\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 4\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 3\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n\n INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 892 (Logiwa - 942)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 55\n\n 🔔\u0000 Event: property_change\n Count: 322\n Properties:\n 📝\u0000 jobtitle: 56 changes\n 📝\u0000 lastname: 57 changes\n 📝\u0000 firstname: 59 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 email: 55 changes\n 📝\u0000 hubspot_owner_id: 38 changes\n 📝\u0000 associatedcompanyid: 47 changes\n 📝\u0000 phone: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 42\n Properties:\n 📝\u0000 name: 21 changes\n 📝\u0000 domain: 16 changes\n 📝\u0000 hubspot_owner_id: 5 changes\n\n 🔔\u0000 Event: association_change\n Count: 96\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 151\n Properties:\n 📝\u0000 notes_last_updated: 139 changes\n 📝\u0000 closedate: 3 changes\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 current_wms: 1 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 hs_manual_forecast_category: 1 changes\n\n\n INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 882 (GoGlobal - 933)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 837\n Properties:\n 📝\u0000 hs_next_step: 93 changes\n 📝\u0000 situation: 80 changes\n 📝\u0000 compelling_event: 76 changes\n 📝\u0000 decision_process: 72 changes\n 📝\u0000 decision_criteria: 76 changes\n 📝\u0000 problem: 50 changes\n 📝\u0000 impact: 50 changes\n 📝\u0000 amount: 73 changes\n 📝\u0000 amount_in_home_currency: 63 changes\n 📝\u0000 closedate: 19 changes\n 📝\u0000 dealstage: 39 changes\n 📝\u0000 description: 6 changes\n 📝\u0000 hs_deal_stage_probability: 51 changes\n 📝\u0000 dealname: 22 changes\n 📝\u0000 deal_currency_code: 24 changes\n 📝\u0000 hs_manual_forecast_category: 18 changes\n 📝\u0000 hiring_countries: 4 changes\n 📝\u0000 leadtype: 2 changes\n 📝\u0000 manager_forecast_notes: 10 changes\n 📝\u0000 competitors____please_specify: 1 changes\n 📝\u0000 closed_won_reason_jiminny_ai: 1 changes\n 📝\u0000 client_handover_notes_jiminny_ai: 1 changes\n 📝\u0000 lead_source_deal: 2 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n\n 🔔\u0000 Event: association_change\n Count: 48\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 759\n Properties:\n 📝\u0000 domain: 148 changes\n 📝\u0000 name: 140 changes\n 📝\u0000 country: 135 changes\n 📝\u0000 phone: 115 changes\n 📝\u0000 industry: 124 changes\n 📝\u0000 hubspot_owner_id: 97 changes\n\n 🔔\u0000 Event: creation\n Count: 147\n\n 🔔\u0000 Event: association_change\n Count: 1369\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 4203\n Properties:\n 📝\u0000 lastname: 666 changes\n 📝\u0000 email: 600 changes\n 📝\u0000 hubspot_owner_id: 562 changes\n 📝\u0000 firstname: 608 changes\n 📝\u0000 jobtitle: 555 changes\n 📝\u0000 country: 585 changes\n 📝\u0000 associatedcompanyid: 585 changes\n 📝\u0000 phone: 31 changes\n 📝\u0000 mobilephone: 11 changes\n\n 🔔\u0000 Event: creation\n Count: 600\n\n 🔔\u0000 Event: association_change\n Count: 1349\n\n\n INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16.","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
6670214385448401710
|
7614166453860056949
|
idle
|
accessibility
|
NULL
|
📝 dealname: 3 changes
📝 use_case: 3 📝 dealname: 3 changes
📝 use_case: 3 changes
📝 vertical: 3 changes
📝 source: 4 changes
📝 region: 3 changes
INFO Looking for metrics: Config 317 (PureGroup - 335), Date 2026-04-16.
📊 Webhook Metrics for Config 317 (PureGroup - 335)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 14
Properties:
📝 hubspot_owner_id: 4 changes
📝 email: 1 changes
📝 jobtitle: 2 changes
📝 lastname: 2 changes
📝 firstname: 3 changes
📝 associatedcompanyid: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 9
🔔 Event: creation
Count: 1
📦 Object Type: company
🔔 Event: association_change
Count: 9
INFO Looking for metrics: Config 480 (Flo Recruit - 506), Date 2026-04-16.
📊 Webhook Metrics for Config 480 (Flo Recruit - 506)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 27
🔔 Event: property_change
Count: 9
Properties:
📝 domain: 4 changes
📝 name: 3 changes
📝 hubspot_owner_id: 2 changes
🔔 Event: creation
Count: 4
📦 Object Type: contact
🔔 Event: association_change
Count: 29
🔔 Event: creation
Count: 17
🔔 Event: property_change
Count: 179
Properties:
📝 jobtitle: 85 changes
📝 mobilephone: 1 changes
📝 phone: 2 changes
📝 firstname: 27 changes
📝 lastname: 22 changes
📝 hubspot_owner_id: 14 changes
📝 email: 19 changes
📝 associatedcompanyid: 9 changes
📦 Object Type: deal
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 17
Properties:
📝 dealstage: 7 changes
📝 hs_deal_stage_probability: 6 changes
📝 hs_manual_forecast_category: 3 changes
📝 closedate: 1 changes
INFO Looking for metrics: Config 48 (CleanCloud - 51), Date 2026-04-16.
📊 Webhook Metrics for Config 48 (CleanCloud - 51)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 90
Properties:
📝 hubspot_owner_id: 46 changes
📝 country: 22 changes
📝 name: 22 changes
🔔 Event: creation
Count: 21
🔔 Event: association_change
Count: 97
📦 Object Type: contact
🔔 Event: creation
Count: 30
🔔 Event: association_change
Count: 70
🔔 Event: property_change
Count: 246
Properties:
📝 email: 45 changes
📝 lastname: 26 changes
📝 phone: 28 changes
📝 country: 24 changes
📝 firstname: 41 changes
📝 hubspot_owner_id: 60 changes
📝 associatedcompanyid: 21 changes
📝 jobtitle: 1 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 489
Properties:
📝 dealstage: 87 changes
📝 hs_deal_stage_probability: 103 changes
📝 business_type__auto_from_contact_property_: 7 changes
📝 currently_using: 27 changes
📝 deal_summary_ai_: 99 changes
📝 are_you_currently_doing_p_d_: 19 changes
📝 timeline: 21 changes
📝 deal_source: 20 changes
📝 primary_reason_: 23 changes
📝 no__orders_processed_every_month: 19 changes
📝 hubspot_owner_id: 7 changes
📝 closedate: 35 changes
📝 services_offered: 6 changes
📝 dealname: 2 changes
📝 who_else_are_you_talking_to_: 3 changes
📝 deal_currency_code: 2 changes
📝 amount: 2 changes
📝 tagging: 2 changes
📝 pipeline: 2 changes
📝 hardware_setup: 1 changes
📝 data_import: 2 changes
🔔 Event: creation
Count: 29
🔔 Event: association_change
Count: 83
INFO Looking for metrics: Config 675 (Juriba - 695), Date 2026-04-16.
📊 Webhook Metrics for Config 675 (Juriba - 695)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 620
📦 Object Type: contact
🔔 Event: property_change
Count: 237
Properties:
📝 jobtitle: 13 changes
📝 phone: 10 changes
📝 firstname: 9 changes
📝 country: 6 changes
📝 hubspot_owner_id: 18 changes
📝 email: 9 changes
📝 mobilephone: 7 changes
📝 lastname: 9 changes
📝 associatedcompanyid: 156 changes
🔔 Event: association_change
Count: 608
🔔 Event: creation
Count: 9
📦 Object Type: deal
🔔 Event: association_change
Count: 12
INFO Looking for metrics: Config 1021 (Gen3 Marketing - 1089), Date 2026-04-16.
📊 Webhook Metrics for Config 1021 (Gen3 Marketing - 1089)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 54
Properties:
📝 domain: 15 changes
📝 hubspot_owner_id: 17 changes
📝 name: 17 changes
📝 industry: 2 changes
📝 phone: 2 changes
📝 country: 1 changes
🔔 Event: creation
Count: 13
🔔 Event: association_change
Count: 183
📦 Object Type: contact
🔔 Event: property_change
Count: 134
Properties:
📝 email: 12 changes
📝 phone: 11 changes
📝 firstname: 10 changes
📝 lastname: 10 changes
📝 associatedcompanyid: 43 changes
📝 hubspot_owner_id: 33 changes
📝 jobtitle: 8 changes
📝 country: 1 changes
📝 mobilephone: 6 changes
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 155
📦 Object Type: deal
🔔 Event: association_change
Count: 28
🔔 Event: property_change
Count: 18
Properties:
📝 amount: 3 changes
📝 dealstage: 3 changes
📝 hs_deal_stage_probability: 6 changes
📝 service_type_updated: 2 changes
📝 hs_next_step: 2 changes
📝 closedate: 1 changes
📝 days_to_close: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 716 (Terpene Belt Farms - 737), Date 2026-04-16.
📊 Webhook Metrics for Config 716 (Terpene Belt Farms - 737)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 72
Properties:
📝 phone: 8 changes
📝 email: 7 changes
📝 country: 16 changes
📝 lastname: 12 changes
📝 firstname: 10 changes
📝 mobilephone: 3 changes
📝 hubspot_owner_id: 5 changes
📝 jobtitle: 9 changes
📝 associatedcompanyid: 2 changes
🔔 Event: association_change
Count: 27
🔔 Event: creation
Count: 7
📦 Object Type: deal
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 47
🔔 Event: property_change
Count: 79
Properties:
📝 hs_deal_stage_probability: 24 changes
📝 deal_currency_code: 6 changes
📝 amount: 13 changes
📝 closedate: 9 changes
📝 dealstage: 18 changes
📝 pipeline: 3 changes
📝 dealname: 3 changes
📝 hubspot_owner_id: 3 changes
📦 Object Type: company
🔔 Event: property_change
Count: 5
Properties:
📝 hubspot_owner_id: 1 changes
📝 name: 3 changes
📝 country: 1 changes
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 921 (Matrak - 968), Date 2026-04-16.
📊 Webhook Metrics for Config 921 (Matrak - 968)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 17
Properties:
📝 hubspot_owner_id: 6 changes
📝 email: 3 changes
📝 associatedcompanyid: 4 changes
📝 phone: 1 changes
📝 jobtitle: 1 changes
📝 lastname: 1 changes
📝 firstname: 1 changes
🔔 Event: creation
Count: 3
🔔 Event: association_change
Count: 8
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 2
Properties:
📝 name: 1 changes
📝 domain: 1 changes
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: property_change
Count: 5
Properties:
📝 hubspot_owner_id: 4 changes
📝 amount: 1 changes
INFO Looking for metrics: Config 1054 (Temelio - 1118), Date 2026-04-16.
📊 Webhook Metrics for Config 1054 (Temelio - 1118)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 80
Properties:
📝 hs_next_step: 2 changes
📝 dealstage: 15 changes
📝 hs_manual_forecast_category: 12 changes
📝 hubspot_owner_id: 1 changes
📝 amount: 2 changes
📝 closedate: 35 changes
📝 hs_deal_stage_probability: 13 changes
🔔 Event: association_change
Count: 85
📦 Object Type: contact
🔔 Event: association_change
Count: 7838
🔔 Event: property_change
Count: 1938
Properties:
📝 associatedcompanyid: 1828 changes
📝 phone: 5 changes
📝 lastname: 6 changes
📝 email: 9 changes
📝 jobtitle: 7 changes
📝 firstname: 7 changes
📝 hubspot_owner_id: 76 changes
🔔 Event: creation
Count: 15
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 1609
Properties:
📝 domain: 72 changes
📝 name: 6 changes
📝 hubspot_owner_id: 1047 changes
📝 phone: 431 changes
📝 country: 7 changes
📝 industry: 46 changes
🔔 Event: association_change
Count: 7911
INFO Looking for metrics: Config 1060 (Velatir - 1122), Date 2026-04-16.
📊 Webhook Metrics for Config 1060 (Velatir - 1122)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 205
Properties:
📝 email: 49 changes
📝 hubspot_owner_id: 64 changes
📝 firstname: 15 changes
📝 lastname: 14 changes
📝 associatedcompanyid: 50 changes
📝 phone: 5 changes
📝 jobtitle: 5 changes
📝 country: 3 changes
🔔 Event: creation
Count: 50
🔔 Event: association_change
Count: 114
📦 Object Type: company
🔔 Event: creation
Count: 21
🔔 Event: property_change
Count: 496
Properties:
📝 phone: 198 changes
📝 domain: 24 changes
📝 country: 18 changes
📝 name: 18 changes
📝 industry: 13 changes
📝 hubspot_owner_id: 225 changes
🔔 Event: association_change
Count: 126
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 55
Properties:
📝 hs_deal_stage_probability: 18 changes
📝 deal_currency_code: 8 changes
📝 amount: 10 changes
📝 hubspot_owner_id: 6 changes
📝 dealtype: 3 changes
📝 dealname: 4 changes
📝 dealstage: 6 changes
🔔 Event: association_change
Count: 36
INFO Looking for metrics: Config 272 (Bonham & Brook - 290), Date 2026-04-16.
📊 Webhook Metrics for Config 272 (Bonham & Brook - 290)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 33
🔔 Event: association_change
Count: 212
🔔 Event: property_change
Count: 221
Properties:
📝 hubspot_owner_id: 58 changes
📝 country: 33 changes
📝 name: 36 changes
📝 domain: 33 changes
📝 phone: 34 changes
📝 industry: 27 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 571
Properties:
📝 notes_last_updated: 323 changes
📝 notes_last_contacted: 193 changes
📝 hs_deal_stage_probability: 21 changes
📝 dealstage: 13 changes
📝 amount: 8 changes
📝 dealname: 8 changes
📝 hs_manual_forecast_category: 3 changes
📝 closedate: 1 changes
📝 pipeline: 1 changes
🔔 Event: creation
Count: 12
🔔 Event: association_change
Count: 31
📦 Object Type: contact
🔔 Event: property_change
Count: 580
Properties:
📝 country: 42 changes
📝 mobilephone: 25 changes
📝 jobtitle: 66 changes
📝 phone: 69 changes
📝 email: 70 changes
📝 hubspot_owner_id: 100 changes
📝 firstname: 66 changes
📝 lastname: 65 changes
📝 associatedcompanyid: 77 changes
🔔 Event: association_change
Count: 195
🔔 Event: creation
Count: 71
INFO Looking for metrics: Config 989 (rtaoutdoor.com - 1058), Date 2026-04-16.
📊 Webhook Metrics for Config 989 (rtaoutdoor.com - 1058)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 413
🔔 Event: association_change
Count: 235
🔔 Event: property_change
Count: 1375
Properties:
📝 email: 414 changes
📝 hubspot_owner_id: 453 changes
📝 lastname: 94 changes
📝 firstname: 94 changes
📝 phone: 257 changes
📝 jobtitle: 8 changes
📝 associatedcompanyid: 52 changes
📝 mobilephone: 2 changes
📝 country: 1 changes
📦 Object Type: company
🔔 Event: creation
Count: 58
🔔 Event: association_change
Count: 224
🔔 Event: property_change
Count: 116
Properties:
📝 hubspot_owner_id: 58 changes
📝 name: 58 changes
📦 Object Type: deal
🔔 Event: creation
Count: 116
🔔 Event: property_change
Count: 1053
Properties:
📝 hs_deal_stage_probability: 269 changes
📝 hubspot_owner_id: 161 changes
📝 amount: 120 changes
📝 amount_in_home_currency: 120 changes
📝 closedate: 105 changes
📝 dealstage: 190 changes
📝 amount_stamp___stage_deposit_received: 16 changes
📝 deal_currency_code: 68 changes
📝 dealname: 3 changes
📝 pipeline: 1 changes
🔔 Event: association_change
Count: 243
INFO Looking for metrics: Config 64 (SalaryFinance - 70), Date 2026-04-16.
📊 Webhook Metrics for Config 64 (SalaryFinance - 70)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 11
Properties:
📝 hubspot_owner_id: 5 changes
📝 domain: 2 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 name: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 92
📦 Object Type: deal
🔔 Event: property_change
Count: 3
Properties:
📝 closedate: 1 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
🔔 Event: association_change
Count: 4
📦 Object Type: contact
🔔 Event: creation
Count: 18
🔔 Event: property_change
Count: 181
Properties:
📝 email: 16 changes
📝 associatedcompanyid: 13 changes
📝 country: 11 changes
📝 hubspot_owner_id: 117 changes
📝 firstname: 8 changes
📝 jobtitle: 8 changes
📝 lastname: 8 changes
🔔 Event: association_change
Count: 96
INFO Looking for metrics: Config 1056 (Chromatic - 1119), Date 2026-04-16.
📊 Webhook Metrics for Config 1056 (Chromatic - 1119)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 445
🔔 Event: property_change
Count: 2421
Properties:
📝 email: 438 changes
📝 associatedcompanyid: 405 changes
📝 jobtitle: 760 changes
📝 firstname: 423 changes
📝 lastname: 320 changes
📝 hubspot_owner_id: 66 changes
📝 country: 2 changes
📝 phone: 3 changes
📝 hs_avatar_filemanager_key: 3 changes
📝 mobilephone: 1 changes
🔔 Event: association_change
Count: 841
📦 Object Type: deal
🔔 Event: property_change
Count: 94
Properties:
📝 dealstage: 11 changes
📝 hs_deal_stage_probability: 15 changes
📝 closedate: 16 changes
📝 hs_manual_forecast_category: 13 changes
📝 hs_next_step: 20 changes
📝 amount: 5 changes
📝 dealname: 7 changes
📝 hubspot_owner_id: 2 changes
📝 dealtype: 3 changes
📝 createdate: 2 changes
🔔 Event: creation
Count: 4
🔔 Event: association_change
Count: 13
📦 Object Type: company
🔔 Event: association_change
Count: 844
🔔 Event: property_change
Count: 202
Properties:
📝 country: 54 changes
📝 hubspot_owner_id: 47 changes
📝 domain: 57 changes
📝 name: 43 changes
📝 industry: 1 changes
🔔 Event: creation
Count: 57
INFO Looking for metrics: Config 533 (Connectd - 559), Date 2026-04-16.
📊 Webhook Metrics for Config 533 (Connectd - 559)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 720
🔔 Event: property_change
Count: 3906
Properties:
📝 mobilephone: 15 changes
📝 lastname: 766 changes
📝 phone: 699 changes
📝 firstname: 773 changes
📝 email: 725 changes
📝 hubspot_owner_id: 757 changes
📝 jobtitle: 99 changes
📝 country: 72 changes
🔔 Event: association_change
Count: 864
📦 Object Type: deal
🔔 Event: property_change
Count: 3984
Properties:
📝 hs_deal_stage_probability: 1843 changes
📝 dealstage: 1316 changes
📝 closedate: 612 changes
📝 createdate: 7 changes
📝 hubspot_owner_id: 134 changes
📝 amount: 23 changes
📝 amount_in_home_currency: 30 changes
📝 dealname: 15 changes
📝 deal_currency_code: 3 changes
📝 pipeline: 1 changes
🔔 Event: association_change
Count: 780
🔔 Event: creation
Count: 648
📦 Object Type: company
🔔 Event: association_change
Count: 88
INFO Looking for metrics: Config 1006 (Dovetail Software - 1076), Date 2026-04-16.
📊 Webhook Metrics for Config 1006 (Dovetail Software - 1076)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 9
Properties:
📝 hs_manual_forecast_category: 2 changes
📝 hs_deal_stage_probability: 3 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 1 changes
📝 dealstage: 1 changes
🔔 Event: creation
Count: 2
📦 Object Type: contact
🔔 Event: property_change
Count: 167
Properties:
📝 associatedcompanyid: 11 changes
📝 lastname: 11 changes
📝 phone: 11 changes
📝 hubspot_owner_id: 83 changes
📝 mobilephone: 9 changes
📝 firstname: 10 changes
📝 country: 13 changes
📝 email: 9 changes
📝 jobtitle: 10 changes
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 25
📦 Object Type: company
🔔 Event: association_change
Count: 27
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 14
Properties:
📝 hubspot_owner_id: 7 changes
📝 phone: 2 changes
📝 name: 1 changes
📝 country: 2 changes
📝 industry: 1 changes
📝 domain: 1 changes
INFO Looking for metrics: Config 154 (Learnerbly - 172), Date 2026-04-16.
📊 Webhook Metrics for Config 154 (Learnerbly - 172)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 2
Properties:
📝 hubspot_owner_id: 1 changes
📝 phone: 1 changes
🔔 Event: association_change
Count: 4
📦 Object Type: company
🔔 Event: association_change
Count: 4
📦 Object Type: deal
🔔 Event: property_change
Count: 3
Properties:
📝 amount: 1 changes
📝 dealstage: 1 changes
📝 hs_deal_stage_probability: 1 changes
INFO Looking for metrics: Config 892 (Logiwa - 942), Date 2026-04-16.
📊 Webhook Metrics for Config 892 (Logiwa - 942)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 55
🔔 Event: property_change
Count: 322
Properties:
📝 jobtitle: 56 changes
📝 lastname: 57 changes
📝 firstname: 59 changes
📝 country: 4 changes
📝 email: 55 changes
📝 hubspot_owner_id: 38 changes
📝 associatedcompanyid: 47 changes
📝 phone: 6 changes
🔔 Event: association_change
Count: 96
📦 Object Type: company
🔔 Event: creation
Count: 16
🔔 Event: property_change
Count: 42
Properties:
📝 name: 21 changes
📝 domain: 16 changes
📝 hubspot_owner_id: 5 changes
🔔 Event: association_change
Count: 96
📦 Object Type: deal
🔔 Event: property_change
Count: 151
Properties:
📝 notes_last_updated: 139 changes
📝 closedate: 3 changes
📝 dealstage: 3 changes
📝 current_wms: 1 changes
📝 hs_deal_stage_probability: 3 changes
📝 amount: 1 changes
📝 hs_manual_forecast_category: 1 changes
INFO Looking for metrics: Config 882 (GoGlobal - 933), Date 2026-04-16.
📊 Webhook Metrics for Config 882 (GoGlobal - 933)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 837
Properties:
📝 hs_next_step: 93 changes
📝 situation: 80 changes
📝 compelling_event: 76 changes
📝 decision_process: 72 changes
📝 decision_criteria: 76 changes
📝 problem: 50 changes
📝 impact: 50 changes
📝 amount: 73 changes
📝 amount_in_home_currency: 63 changes
📝 closedate: 19 changes
📝 dealstage: 39 changes
📝 description: 6 changes
📝 hs_deal_stage_probability: 51 changes
📝 dealname: 22 changes
📝 deal_currency_code: 24 changes
📝 hs_manual_forecast_category: 18 changes
📝 hiring_countries: 4 changes
📝 leadtype: 2 changes
📝 manager_forecast_notes: 10 changes
📝 competitors____please_specify: 1 changes
📝 closed_won_reason_jiminny_ai: 1 changes
📝 client_handover_notes_jiminny_ai: 1 changes
📝 lead_source_deal: 2 changes
📝 hubspot_owner_id: 4 changes
🔔 Event: association_change
Count: 48
📦 Object Type: company
🔔 Event: property_change
Count: 759
Properties:
📝 domain: 148 changes
📝 name: 140 changes
📝 country: 135 changes
📝 phone: 115 changes
📝 industry: 124 changes
📝 hubspot_owner_id: 97 changes
🔔 Event: creation
Count: 147
🔔 Event: association_change
Count: 1369
📦 Object Type: contact
🔔 Event: property_change
Count: 4203
Properties:
📝 lastname: 666 changes
📝 email: 600 changes
📝 hubspot_owner_id: 562 changes
📝 firstname: 608 changes
📝 jobtitle: 555 changes
📝 country: 585 changes
📝 associatedcompanyid: 585 changes
📝 phone: 31 changes
📝 mobilephone: 11 changes
🔔 Event: creation
Count: 600
🔔 Event: association_change
Count: 1349
INFO Looking for metrics: Config 797 (Kodex - 848), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69504
|
1598
|
3
|
2026-04-22T08:13:46.142063+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845626142_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
📝 associatedcompanyid: 15 changes
📝 📝 associatedcompanyid: 15 changes
📝 mobilephone: 3 changes
🔔 Event: association_change
Count: 35
📦 Object Type: company
🔔 Event: association_change
Count: 36
🔔 Event: property_change
Count: 24
Properties:
📝 hubspot_owner_id: 6 changes
📝 domain: 5 changes
📝 country: 4 changes
📝 industry: 4 changes
📝 name: 4 changes
📝 phone: 1 changes
🔔 Event: creation
Count: 4
📦 Object Type: deal
🔔 Event: property_change
Count: 1
Properties:
📝 hs_deal_stage_probability: 1 changes
🔔 Event: association_change
Count: 3
🔔 Event: creation
Count: 1
INFO Looking for metrics: Config 428 (Welcome to the Jungle UK - 461), Date 2026-04-16.
📊 Webhook Metrics for Config 428 (Welcome to the Jungle UK - 461)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 107
🔔 Event: property_change
Count: 352
Properties:
📝 firstname: 34 changes
📝 email: 35 changes
📝 lastname: 32 changes
📝 associatedcompanyid: 37 changes
📝 country: 29 changes
📝 jobtitle: 29 changes
📝 phone: 43 changes
📝 hubspot_owner_id: 108 changes
📝 mobilephone: 5 changes
🔔 Event: creation
Count: 32
📦 Object Type: deal
🔔 Event: property_change
Count: 225
Properties:
📝 hs_deal_stage_probability: 53 changes
📝 product: 7 changes
📝 closedate: 20 changes
📝 dealstage: 40 changes
📝 hs_manual_forecast_category: 31 changes
📝 amount: 26 changes
📝 deal_currency_code: 17 changes
📝 dealname: 5 changes
📝 segment: 16 changes
📝 hs_next_step: 6 changes
📝 deal_source: 4 changes
🔔 Event: creation
Count: 14
🔔 Event: association_change
Count: 41
📦 Object Type: company
🔔 Event: property_change
Count: 34
Properties:
📝 hubspot_owner_id: 18 changes
📝 domain: 9 changes
📝 name: 7 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 130
INFO Looking for metrics: Config 581 (Penfold - 606), Date 2026-04-16.
📊 Webhook Metrics for Config 581 (Penfold - 606)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 161
🔔 Event: creation
Count: 117
🔔 Event: property_change
Count: 574
Properties:
📝 email: 117 changes
📝 lastname: 69 changes
📝 firstname: 74 changes
📝 associatedcompanyid: 74 changes
📝 hubspot_owner_id: 156 changes
📝 jobtitle: 28 changes
📝 country: 22 changes
📝 phone: 18 changes
📝 mobilephone: 16 changes
📦 Object Type: company
🔔 Event: creation
Count: 21
🔔 Event: property_change
Count: 78
Properties:
📝 domain: 22 changes
📝 name: 23 changes
📝 hubspot_owner_id: 27 changes
📝 phone: 3 changes
📝 industry: 1 changes
📝 country: 2 changes
🔔 Event: association_change
Count: 167
📦 Object Type: deal
🔔 Event: association_change
Count: 18
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 49
Properties:
📝 dealstage: 13 changes
📝 hs_deal_stage_probability: 18 changes
📝 hs_manual_forecast_category: 10 changes
📝 hubspot_owner_id: 2 changes
📝 hs_next_step: 1 changes
📝 amount: 2 changes
📝 closedate: 3 changes
INFO Looking for metrics: Config 1015 (Travefy - 1049), Date 2026-04-16.
📊 Webhook Metrics for Config 1015 (Travefy - 1049)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 1064
Properties:
📝 firstname: 194 changes
📝 phone: 141 changes
📝 email: 156 changes
📝 lastname: 171 changes
📝 associatedcompanyid: 156 changes
📝 hubspot_owner_id: 228 changes
📝 jobtitle: 11 changes
📝 mobilephone: 5 changes
📝 country: 2 changes
🔔 Event: creation
Count: 154
🔔 Event: association_change
Count: 411
📦 Object Type: deal
🔔 Event: property_change
Count: 1072
Properties:
📝 deal_currency_code: 98 changes
📝 amount: 108 changes
📝 hs_deal_stage_probability: 262 changes
📝 hs_manual_forecast_category: 217 changes
📝 hubspot_owner_id: 107 changes
📝 closedate: 109 changes
📝 dealstage: 163 changes
📝 seats_interest: 2 changes
📝 pipeline: 5 changes
📝 competitor_deal: 1 changes
🔔 Event: creation
Count: 99
🔔 Event: association_change
Count: 297
📦 Object Type: company
🔔 Event: creation
Count: 151
🔔 Event: association_change
Count: 510
🔔 Event: property_change
Count: 263
Properties:
📝 name: 171 changes
📝 hubspot_owner_id: 92 changes
INFO Looking for metrics: Config 413 (VCC - 347), Date 2026-04-16.
📊 Webhook Metrics for Config 413 (VCC - 347)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: property_change
Count: 10
Properties:
📝 closedate: 3 changes
📝 amount: 1 changes
📝 dealstage: 2 changes
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
🔔 Event: association_change
Count: 1
📦 Object Type: contact
🔔 Event: property_change
Count: 12
Properties:
📝 email: 1 changes
📝 hubspot_owner_id: 2 changes
📝 associatedcompanyid: 1 changes
📝 phone: 1 changes
📝 jobtitle: 3 changes
📝 country: 1 changes
📝 lastname: 1 changes
📝 mobilephone: 1 changes
📝 firstname: 1 changes
🔔 Event: association_change
Count: 2
🔔 Event: creation
Count: 1
📦 Object Type: company
🔔 Event: association_change
Count: 3
🔔 Event: property_change
Count: 18
Properties:
📝 name: 9 changes
📝 domain: 9 changes
🔔 Event: creation
Count: 9
INFO Looking for metrics: Config 591 (Data & AI Literacy Academy - 615), Date 2026-04-16.
📊 Webhook Metrics for Config 591 (Data & AI Literacy Academy - 615)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 30
Properties:
📝 hubspot_owner_id: 16 changes
📝 name: 7 changes
📝 domain: 7 changes
🔔 Event: association_change
Count: 122
🔔 Event: creation
Count: 8
📦 Object Type: deal
🔔 Event: property_change
Count: 34
Properties:
📝 amount: 1 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 10 changes
📝 dealstage: 6 changes
📝 hs_deal_stage_probability: 6 changes
📝 hs_manual_forecast_category: 9 changes
📦 Object Type: contact
🔔 Event: creation
Count: 39
🔔 Event: association_change
Count: 122
🔔 Event: property_change
Count: 306
Properties:
📝 jobtitle: 29 changes
📝 hubspot_owner_id: 70 changes
📝 firstname: 36 changes
📝 lastname: 36 changes
📝 associatedcompanyid: 42 changes
📝 mobilephone: 27 changes
📝 email: 39 changes
📝 phone: 27 changes
INFO Looking for metrics: Config 1031 (CUCollaborate - 1096), Date 2026-04-16.
📊 Webhook Metrics for Config 1031 (CUCollaborate - 1096)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 9
🔔 Event: property_change
Count: 100
Properties:
📝 country: 12 changes
📝 jobtitle: 16 changes
📝 phone: 10 changes
📝 email: 14 changes
📝 hubspot_owner_id: 15 changes
📝 lastname: 8 changes
📝 firstname: 9 changes
📝 associatedcompanyid: 9 changes
📝 mobilephone: 7 changes
🔔 Event: association_change
Count: 24
📦 Object Type: deal
🔔 Event: creation
Count: 5
🔔 Event: association_change
Count: 16
🔔 Event: property_change
Count: 47
Properties:
📝 dealstage: 7 changes
📝 hs_deal_stage_probability: 12 changes
📝 closedate: 9 changes
📝 hs_manual_forecast_category: 10 changes
📝 dealname: 3 changes
📝 deal_currency_code: 1 changes
📝 amount: 2 changes
📝 hs_next_step: 2 changes
📝 hubspot_owner_id: 1 changes
📦 Object Type: company
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 12
Properties:
📝 country: 2 changes
📝 domain: 2 changes
📝 industry: 2 changes
📝 phone: 2 changes
📝 name: 2 changes
📝 hubspot_owner_id: 2 changes
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 1025 (Predictiv - 1092), Date 2026-04-16.
📊 Webhook Metrics for Config 1025 (Predictiv - 1092)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 5
Properties:
📝 domain: 2 changes
📝 name: 2 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: association_change
Count: 6
🔔 Event: creation
Count: 2
📦 Object Type: contact
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 17
Properties:
📝 email: 3 changes
📝 phone: 2 changes
📝 associatedcompanyid: 3 changes
📝 hubspot_owner_id: 2 changes
📝 country: 2 changes
📝 firstname: 2 changes
📝 lastname: 2 changes
📝 jobtitle: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 1051 (IndySoft - 1115), Date 2026-04-16.
📊 Webhook Metrics for Config 1051 (IndySoft - 1115)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 29
🔔 Event: property_change
Count: 11
Properties:
📝 domain: 4 changes
📝 name: 2 changes
📝 phone: 1 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 hubspot_owner_id: 2 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 17
Properties:
📝 dealstage: 3 changes
📝 hs_deal_stage_probability: 4 changes
📝 hs_manual_forecast_category: 3 changes
📝 deal_currency_code: 1 changes
📝 amount: 4 changes
📝 closedate: 2 changes
🔔 Event: association_change
Count: 3
🔔 Event: creation
Count: 1
📦 Object Type: contact
🔔 Event: property_change
Count: 64
Properties:
📝 associatedcompanyid: 10 changes
📝 email: 7 changes
📝 lastname: 11 changes
📝 firstname: 11 changes
📝 mobilephone: 1 changes
📝 phone: 9 changes
📝 jobtitle: 7 changes
📝 hubspot_owner_id: 8 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 966 (Crowdcube Ltd - 263), Date 2026-04-16.
📊 Webhook Metrics for Config 966 (Crowdcube Ltd - 263)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 204
Properties:
📝 amount: 6 changes
📝 amount_in_home_currency: 6 changes
📝 dealstage: 46 changes
📝 hs_deal_stage_probability: 53 changes
📝 hs_manual_forecast_category: 52 changes
📝 closedate: 40 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: association_change
Count: 39
📦 Object Type: contact
🔔 Event: property_change
Count: 126
Properties:
📝 phone: 5 changes
📝 firstname: 19 changes
📝 lastname: 17 changes
📝 hubspot_owner_id: 27 changes
📝 email: 20 changes
📝 associatedcompanyid: 16 changes
📝 country: 8 changes
📝 jobtitle: 13 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 22
🔔 Event: association_change
Count: 45
📦 Object Type: company
🔔 Event: property_change
Count: 61
Properties:
📝 domain: 13 changes
📝 name: 12 changes
📝 industry: 8 changes
📝 phone: 6 changes
📝 hubspot_owner_id: 16 changes
📝 country: 6 changes
🔔 Event: association_change
Count: 58
🔔 Event: creation
Count: 13
INFO Looking for metrics: Config 300 (Prowly - 318), Date 2026-04-16.
📊 Webhook Metrics for Config 300 (Prowly - 318)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 66
🔔 Event: property_change
Count: 26
Properties:
📝 hubspot_owner_id: 3 changes
📝 domain: 10 changes
📝 name: 10 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 phone: 1 changes
📦 Object Type: contact
🔔 Event: creation
Count: 33
🔔 Event: association_change
Count: 55
🔔 Event: property_change
Count: 114
Properties:
📝 firstname: 23 changes
📝 email: 33 changes
📝 lastname: 9 changes
📝 country: 9 changes
📝 associatedcompanyid: 21 changes
📝 hubspot_owner_id: 15 changes
📝 phone: 2 changes
📝 jobtitle: 2 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 80
Properties:
📝 pipeline: 2 changes
📝 dealstage: 10 changes
📝 amount: 20 changes
📝 dealname: 2 changes
📝 closedate: 15 changes
📝 hs_deal_stage_probability: 16 changes
📝 deal_currency_code: 8 changes
📝 dealtype: 5 changes
📝 hubspot_owner_id: 2 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 37
INFO Looking for metrics: Config 265 (Orbital - 283), Date 2026-04-16.
📊 Webhook Metrics for Config 265 (Orbital - 283)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: property_change
Count: 207
Properties:
📝 deal_risk: 62 changes
📝 deal_probability: 29 changes
📝 competitors_summary: 42 changes
📝 closure_forecast: 33 changes
📝 competitors: 12 changes
📝 hs_deal_stage_probability: 5 changes
📝 dealstage: 7 changes
📝 deal_risk_dropdown: 6 changes
📝 amount: 10 changes
📝 hs_next_step: 1 changes
🔔 Event: association_change
Count: 45
📦 Object Type: company
🔔 Event: property_change
Count: 48
Properties:
📝 industry: 21 changes
📝 domain: 11 changes
📝 name: 9 changes
📝 hubspot_owner_id: 3 changes
📝 country: 2 changes
📝 phone: 2 changes
🔔 Event: creation
Count: 11
🔔 Event: association_change
Count: 862
📦 Object Type: contact
🔔 Event: property_change
Count: 1151
Properties:
📝 hubspot_owner_id: 136 changes
📝 phone: 112 changes
📝 country: 131 changes
📝 lastname: 131 changes
📝 email: 118 changes
📝 associatedcompanyid: 261 changes
📝 firstname: 131 changes
📝 jobtitle: 125 changes
📝 mobilephone: 6 changes
🔔 Event: creation
Count: 134
🔔 Event: association_change
Count: 839
INFO Looking for metrics: Config 104 (Just Eat for Business - 111), Date 2026-04-16.
📊 Webhook Metrics for Config 104 (Just Eat for Business - 111)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 35
Properties:
📝 name: 11 changes
📝 hubspot_owner_id: 18 changes
📝 domain: 6 changes
🔔 Event: association_change
Count: 98
🔔 Event: creation
Count: 8
📦 Object Type: deal
🔔 Event: creation
Count: 11
🔔 Event: association_change
Count: 27
🔔 Event: property_change
Count: 21
Properties:
📝 hs_deal_stage_probability: 12 changes
📝 hubspot_owner_id: 4 changes
📝 dealstage: 1 changes
📝 hs_manual_forecast_category: 2 changes
📝 closedate: 2 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 797
Properties:
📝 firstname: 147 changes
📝 email: 172 changes
📝 phone: 238 changes
📝 lastname: 148 changes
📝 associatedcompanyid: 38 changes
📝 hubspot_owner_id: 42 changes
📝 jobtitle: 9 changes
📝 mobilephone: 2 changes
📝 country: 1 changes
🔔 Event: creation
Count: 52
🔔 Event: association_change
Count: 89
INFO Looking for metrics: Config 1062 (Sigma Labs - 1124), Date 2026-04-16.
📊 Webhook Metrics for Config 1062 (Sigma Labs - 1124)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 38
Properties:
📝 mobilephone: 1 changes
📝 firstname: 4 changes
📝 jobtitle: 3 changes
📝 lastname: 4 changes
📝 email: 10 changes
📝 hubspot_owner_id: 8 changes
📝 associatedcompanyid: 5 changes
📝 phone: 1 changes
📝 country: 2 changes
🔔 Event: association_change
Count: 10
🔔 Event: creation
Count: 6
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 5
Properties:
📝 country: 1 changes
📝 name: 1 changes
📝 phone: 1 changes
📝 industry: 1 changes
📝 domain: 1 changes
🔔 Event: association_change
Count: 10
INFO Looking for metrics: Config 949 (Truvi - 1023), Date 2026-04-16.
📊 Webhook Metrics for Config 949 (Truvi - 1023)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 967
🔔 Event: property_change
Count: 287
Properties:
📝 lastname: 47 changes
📝 email: 75 changes
📝 firstname: 55 changes
📝 hubspot_owner_id: 57 changes
📝 associatedcompanyid: 27 changes
📝 phone: 12 changes
📝 jobtitle: 8 changes
📝 country: 5 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 81
📦 Object Type: deal
🔔 Event: creation
Count: 18
🔔 Event: association_change
Count: 1278
🔔 Event: property_change
Count: 526
Properties:
📝 hs_deal_stage_probability: 262 changes
📝 dealstage: 247 changes
📝 closedate: 11 changes
📝 dealname: 2 changes
📝 deal_currency_code: 2 changes
📝 createdate: 1 changes
📝 pipeline: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 451
🔔 Event: property_change
Count: 68
Properties:
📝 name: 34 changes
📝 domain: 28 changes
📝 hubspot_owner_id: 6 changes
🔔 Event: creation
Count: 37
INFO Looking for metrics: Config 945 (Shinydocs - 1019), Date 2026-04-16.
📊 Webhook Metrics for Config 945 (Shinydocs - 1019)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: association_change
Count: 7
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 23
Properties:
📝 dealstage: 8 changes
📝 hs_deal_stage_probability: 9 changes
📝 pipeline: 1 changes
📝 closedate: 1 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
📝 amount_in_home_currency: 2 changes
📦 Object Type: contact
🔔 Event: association_change
Count: 11
🔔 Event: property_change
Count: 14
Properties:
📝 email: 3 changes
📝 hubspot_owner_id: 6 changes
📝 associatedcompanyid: 3 changes
📝 lastname: 1 changes
📝 firstname: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 959 (Voyager - 1031), Date 2026-04-16.
📊 Webhook Metrics for Config 959 (Voyager - 1031)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 8
Properties:
📝 domain: 5 changes
📝 hubspot_owner_id: 1 changes
📝 name: 1 changes
📝 industry: 1 changes
🔔 Event: association_change
Count: 22
📦 Object Type: deal
🔔 Event: property_change
Count: 1
Properties:
📝 amount: 1 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 82
Properties:
📝 hubspot_owner_id: 7 changes
📝 email: 13 changes
📝 jobtitle: 7 changes
📝 firstname: 16 changes
📝 lastname: 17 changes
📝 country: 3 changes
📝 associatedcompanyid: 11 changes
📝 mobilephone: 1 changes
📝 phone: 7 changes
🔔 Event: association_change
Count: 22
🔔 Event: creation
Count: 11
INFO Looking for metrics: Config 1045 (Cove - 1110), Date 2026-04-16.
📊 Webhook Metrics for Config 1045 (Cove - 1110)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 92
🔔 Event: association_change
Count: 676
🔔 Event: property_change
Count: 349
Properties:
📝 domain: 92 changes
📝 country: 76 changes
📝 hubspot_owner_id: 95 changes
📝 name: 86 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 2007
Properties:
📝 lastname: 242 changes
📝 email: 223 changes
📝 firstname: 244 changes
📝 associatedcompanyid: 286 changes
📝 phone: 235 changes
📝 hubspot_owner_id: 358 changes
📝 jobtitle: 236 changes
📝 mobilephone: 183 changes
🔔 Event: creation
Count: 244
🔔 Event: association_change
Count: 673
📦 Object Type: deal
🔔 Event: property_change
Count: 49
Properties:
📝 forecast_probability: 12 changes
📝 probability_justification: 12 changes
📝 metrics: 4 changes
📝 paper_process: 2 changes
📝 competition: 2 changes
📝 amount: 3 changes
📝 hs_deal_stage_probability: 3 changes
📝 deal_currency_code: 1 changes
📝 economic_buyer: 2 changes
📝 decision_criteria: 2 changes
📝 decision_process: 2 changes
📝 identify_pain: 2 changes
📝 champion: 2 changes
🔔 Event: association_change
Count: 9
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 1065 (Integrum ESG - 1126), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"📝\u0000 associatedcompanyid: 15 changes\n 📝\u0000 mobilephone: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 35\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 36\n\n 🔔\u0000 Event: property_change\n Count: 24\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 domain: 5 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 industry: 4 changes\n 📝\u0000 name: 4 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1\n Properties:\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: creation\n Count: 1\n\n\n INFO Looking for metrics: Config 428 (Welcome to the Jungle UK - 461), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 428 (Welcome to the Jungle UK - 461)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 107\n\n 🔔\u0000 Event: property_change\n Count: 352\n Properties:\n 📝\u0000 firstname: 34 changes\n 📝\u0000 email: 35 changes\n 📝\u0000 lastname: 32 changes\n 📝\u0000 associatedcompanyid: 37 changes\n 📝\u0000 country: 29 changes\n 📝\u0000 jobtitle: 29 changes\n 📝\u0000 phone: 43 changes\n 📝\u0000 hubspot_owner_id: 108 changes\n 📝\u0000 mobilephone: 5 changes\n\n 🔔\u0000 Event: creation\n Count: 32\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 225\n Properties:\n 📝\u0000 hs_deal_stage_probability: 53 changes\n 📝\u0000 product: 7 changes\n 📝\u0000 closedate: 20 changes\n 📝\u0000 dealstage: 40 changes\n 📝\u0000 hs_manual_forecast_category: 31 changes\n 📝\u0000 amount: 26 changes\n 📝\u0000 deal_currency_code: 17 changes\n 📝\u0000 dealname: 5 changes\n 📝\u0000 segment: 16 changes\n 📝\u0000 hs_next_step: 6 changes\n 📝\u0000 deal_source: 4 changes\n\n 🔔\u0000 Event: creation\n Count: 14\n\n 🔔\u0000 Event: association_change\n Count: 41\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 34\n Properties:\n 📝\u0000 hubspot_owner_id: 18 changes\n 📝\u0000 domain: 9 changes\n 📝\u0000 name: 7 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 130\n\n\n INFO Looking for metrics: Config 581 (Penfold - 606), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 581 (Penfold - 606)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 161\n\n 🔔\u0000 Event: creation\n Count: 117\n\n 🔔\u0000 Event: property_change\n Count: 574\n Properties:\n 📝\u0000 email: 117 changes\n 📝\u0000 lastname: 69 changes\n 📝\u0000 firstname: 74 changes\n 📝\u0000 associatedcompanyid: 74 changes\n 📝\u0000 hubspot_owner_id: 156 changes\n 📝\u0000 jobtitle: 28 changes\n 📝\u0000 country: 22 changes\n 📝\u0000 phone: 18 changes\n 📝\u0000 mobilephone: 16 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 21\n\n 🔔\u0000 Event: property_change\n Count: 78\n Properties:\n 📝\u0000 domain: 22 changes\n 📝\u0000 name: 23 changes\n 📝\u0000 hubspot_owner_id: 27 changes\n 📝\u0000 phone: 3 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 167\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 18\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 dealstage: 13 changes\n 📝\u0000 hs_deal_stage_probability: 18 changes\n 📝\u0000 hs_manual_forecast_category: 10 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 hs_next_step: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 3 changes\n\n\n INFO Looking for metrics: Config 1015 (Travefy - 1049), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1015 (Travefy - 1049)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 1064\n Properties:\n 📝\u0000 firstname: 194 changes\n 📝\u0000 phone: 141 changes\n 📝\u0000 email: 156 changes\n 📝\u0000 lastname: 171 changes\n 📝\u0000 associatedcompanyid: 156 changes\n 📝\u0000 hubspot_owner_id: 228 changes\n 📝\u0000 jobtitle: 11 changes\n 📝\u0000 mobilephone: 5 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 154\n\n 🔔\u0000 Event: association_change\n Count: 411\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1072\n Properties:\n 📝\u0000 deal_currency_code: 98 changes\n 📝\u0000 amount: 108 changes\n 📝\u0000 hs_deal_stage_probability: 262 changes\n 📝\u0000 hs_manual_forecast_category: 217 changes\n 📝\u0000 hubspot_owner_id: 107 changes\n 📝\u0000 closedate: 109 changes\n 📝\u0000 dealstage: 163 changes\n 📝\u0000 seats_interest: 2 changes\n 📝\u0000 pipeline: 5 changes\n 📝\u0000 competitor_deal: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 99\n\n 🔔\u0000 Event: association_change\n Count: 297\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 151\n\n 🔔\u0000 Event: association_change\n Count: 510\n\n 🔔\u0000 Event: property_change\n Count: 263\n Properties:\n 📝\u0000 name: 171 changes\n 📝\u0000 hubspot_owner_id: 92 changes\n\n\n INFO Looking for metrics: Config 413 (VCC - 347), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 413 (VCC - 347)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 10\n Properties:\n 📝\u0000 closedate: 3 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 dealstage: 2 changes\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 1\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 12\n Properties:\n 📝\u0000 email: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 associatedcompanyid: 1 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 2\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 18\n Properties:\n 📝\u0000 name: 9 changes\n 📝\u0000 domain: 9 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n\n INFO Looking for metrics: Config 591 (Data & AI Literacy Academy - 615), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 591 (Data & AI Literacy Academy - 615)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 30\n Properties:\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 name: 7 changes\n 📝\u0000 domain: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 122\n\n 🔔\u0000 Event: creation\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 34\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 10 changes\n 📝\u0000 dealstage: 6 changes\n 📝\u0000 hs_deal_stage_probability: 6 changes\n 📝\u0000 hs_manual_forecast_category: 9 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 39\n\n 🔔\u0000 Event: association_change\n Count: 122\n\n 🔔\u0000 Event: property_change\n Count: 306\n Properties:\n 📝\u0000 jobtitle: 29 changes\n 📝\u0000 hubspot_owner_id: 70 changes\n 📝\u0000 firstname: 36 changes\n 📝\u0000 lastname: 36 changes\n 📝\u0000 associatedcompanyid: 42 changes\n 📝\u0000 mobilephone: 27 changes\n 📝\u0000 email: 39 changes\n 📝\u0000 phone: 27 changes\n\n\n INFO Looking for metrics: Config 1031 (CUCollaborate - 1096), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1031 (CUCollaborate - 1096)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: property_change\n Count: 100\n Properties:\n 📝\u0000 country: 12 changes\n 📝\u0000 jobtitle: 16 changes\n 📝\u0000 phone: 10 changes\n 📝\u0000 email: 14 changes\n 📝\u0000 hubspot_owner_id: 15 changes\n 📝\u0000 lastname: 8 changes\n 📝\u0000 firstname: 9 changes\n 📝\u0000 associatedcompanyid: 9 changes\n 📝\u0000 mobilephone: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 24\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: association_change\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 47\n Properties:\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 hs_deal_stage_probability: 12 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 hs_manual_forecast_category: 10 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 12\n Properties:\n 📝\u0000 country: 2 changes\n 📝\u0000 domain: 2 changes\n 📝\u0000 industry: 2 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 1025 (Predictiv - 1092), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1025 (Predictiv - 1092)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 domain: 2 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: creation\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 email: 3 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 associatedcompanyid: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 firstname: 2 changes\n 📝\u0000 lastname: 2 changes\n 📝\u0000 jobtitle: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 1051 (IndySoft - 1115), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1051 (IndySoft - 1115)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 29\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 domain: 4 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 hs_deal_stage_probability: 4 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 4 changes\n 📝\u0000 closedate: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 64\n Properties:\n 📝\u0000 associatedcompanyid: 10 changes\n 📝\u0000 email: 7 changes\n 📝\u0000 lastname: 11 changes\n 📝\u0000 firstname: 11 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 phone: 9 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 966 (Crowdcube Ltd - 263), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 966 (Crowdcube Ltd - 263)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 204\n Properties:\n 📝\u0000 amount: 6 changes\n 📝\u0000 amount_in_home_currency: 6 changes\n 📝\u0000 dealstage: 46 changes\n 📝\u0000 hs_deal_stage_probability: 53 changes\n 📝\u0000 hs_manual_forecast_category: 52 changes\n 📝\u0000 closedate: 40 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 39\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 126\n Properties:\n 📝\u0000 phone: 5 changes\n 📝\u0000 firstname: 19 changes\n 📝\u0000 lastname: 17 changes\n 📝\u0000 hubspot_owner_id: 27 changes\n 📝\u0000 email: 20 changes\n 📝\u0000 associatedcompanyid: 16 changes\n 📝\u0000 country: 8 changes\n 📝\u0000 jobtitle: 13 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 22\n\n 🔔\u0000 Event: association_change\n Count: 45\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 61\n Properties:\n 📝\u0000 domain: 13 changes\n 📝\u0000 name: 12 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 phone: 6 changes\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 country: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 58\n\n 🔔\u0000 Event: creation\n Count: 13\n\n\n INFO Looking for metrics: Config 300 (Prowly - 318), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 300 (Prowly - 318)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 66\n\n 🔔\u0000 Event: property_change\n Count: 26\n Properties:\n 📝\u0000 hubspot_owner_id: 3 changes\n 📝\u0000 domain: 10 changes\n 📝\u0000 name: 10 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 phone: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 33\n\n 🔔\u0000 Event: association_change\n Count: 55\n\n 🔔\u0000 Event: property_change\n Count: 114\n Properties:\n 📝\u0000 firstname: 23 changes\n 📝\u0000 email: 33 changes\n 📝\u0000 lastname: 9 changes\n 📝\u0000 country: 9 changes\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 hubspot_owner_id: 15 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 jobtitle: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 80\n Properties:\n 📝\u0000 pipeline: 2 changes\n 📝\u0000 dealstage: 10 changes\n 📝\u0000 amount: 20 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 closedate: 15 changes\n 📝\u0000 hs_deal_stage_probability: 16 changes\n 📝\u0000 deal_currency_code: 8 changes\n 📝\u0000 dealtype: 5 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 37\n\n\n INFO Looking for metrics: Config 265 (Orbital - 283), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 265 (Orbital - 283)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 207\n Properties:\n 📝\u0000 deal_risk: 62 changes\n 📝\u0000 deal_probability: 29 changes\n 📝\u0000 competitors_summary: 42 changes\n 📝\u0000 closure_forecast: 33 changes\n 📝\u0000 competitors: 12 changes\n 📝\u0000 hs_deal_stage_probability: 5 changes\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 deal_risk_dropdown: 6 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 hs_next_step: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 45\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 48\n Properties:\n 📝\u0000 industry: 21 changes\n 📝\u0000 domain: 11 changes\n 📝\u0000 name: 9 changes\n 📝\u0000 hubspot_owner_id: 3 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 phone: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 11\n\n 🔔\u0000 Event: association_change\n Count: 862\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 1151\n Properties:\n 📝\u0000 hubspot_owner_id: 136 changes\n 📝\u0000 phone: 112 changes\n 📝\u0000 country: 131 changes\n 📝\u0000 lastname: 131 changes\n 📝\u0000 email: 118 changes\n 📝\u0000 associatedcompanyid: 261 changes\n 📝\u0000 firstname: 131 changes\n 📝\u0000 jobtitle: 125 changes\n 📝\u0000 mobilephone: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 134\n\n 🔔\u0000 Event: association_change\n Count: 839\n\n\n INFO Looking for metrics: Config 104 (Just Eat for Business - 111), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 104 (Just Eat for Business - 111)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 35\n Properties:\n 📝\u0000 name: 11 changes\n 📝\u0000 hubspot_owner_id: 18 changes\n 📝\u0000 domain: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 98\n\n 🔔\u0000 Event: creation\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 11\n\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: property_change\n Count: 21\n Properties:\n 📝\u0000 hs_deal_stage_probability: 12 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 closedate: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 797\n Properties:\n 📝\u0000 firstname: 147 changes\n 📝\u0000 email: 172 changes\n 📝\u0000 phone: 238 changes\n 📝\u0000 lastname: 148 changes\n 📝\u0000 associatedcompanyid: 38 changes\n 📝\u0000 hubspot_owner_id: 42 changes\n 📝\u0000 jobtitle: 9 changes\n 📝\u0000 mobilephone: 2 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 52\n\n 🔔\u0000 Event: association_change\n Count: 89\n\n\n INFO Looking for metrics: Config 1062 (Sigma Labs - 1124), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1062 (Sigma Labs - 1124)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 38\n Properties:\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 firstname: 4 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 lastname: 4 changes\n 📝\u0000 email: 10 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 associatedcompanyid: 5 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 country: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 domain: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n\n INFO Looking for metrics: Config 949 (Truvi - 1023), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 949 (Truvi - 1023)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 967\n\n 🔔\u0000 Event: property_change\n Count: 287\n Properties:\n 📝\u0000 lastname: 47 changes\n 📝\u0000 email: 75 changes\n 📝\u0000 firstname: 55 changes\n 📝\u0000 hubspot_owner_id: 57 changes\n 📝\u0000 associatedcompanyid: 27 changes\n 📝\u0000 phone: 12 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 country: 5 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 81\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: association_change\n Count: 1278\n\n 🔔\u0000 Event: property_change\n Count: 526\n Properties:\n 📝\u0000 hs_deal_stage_probability: 262 changes\n 📝\u0000 dealstage: 247 changes\n 📝\u0000 closedate: 11 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 deal_currency_code: 2 changes\n 📝\u0000 createdate: 1 changes\n 📝\u0000 pipeline: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 451\n\n 🔔\u0000 Event: property_change\n Count: 68\n Properties:\n 📝\u0000 name: 34 changes\n 📝\u0000 domain: 28 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 37\n\n\n INFO Looking for metrics: Config 945 (Shinydocs - 1019), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 945 (Shinydocs - 1019)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 7\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 23\n Properties:\n 📝\u0000 dealstage: 8 changes\n 📝\u0000 hs_deal_stage_probability: 9 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 amount_in_home_currency: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 11\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 email: 3 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 associatedcompanyid: 3 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 959 (Voyager - 1031), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 959 (Voyager - 1031)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 domain: 5 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 industry: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 22\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1\n Properties:\n 📝\u0000 amount: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 82\n Properties:\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 email: 13 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 firstname: 16 changes\n 📝\u0000 lastname: 17 changes\n 📝\u0000 country: 3 changes\n 📝\u0000 associatedcompanyid: 11 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 phone: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 22\n\n 🔔\u0000 Event: creation\n Count: 11\n\n\n INFO Looking for metrics: Config 1045 (Cove - 1110), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1045 (Cove - 1110)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 92\n\n 🔔\u0000 Event: association_change\n Count: 676\n\n 🔔\u0000 Event: property_change\n Count: 349\n Properties:\n 📝\u0000 domain: 92 changes\n 📝\u0000 country: 76 changes\n 📝\u0000 hubspot_owner_id: 95 changes\n 📝\u0000 name: 86 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2007\n Properties:\n 📝\u0000 lastname: 242 changes\n 📝\u0000 email: 223 changes\n 📝\u0000 firstname: 244 changes\n 📝\u0000 associatedcompanyid: 286 changes\n 📝\u0000 phone: 235 changes\n 📝\u0000 hubspot_owner_id: 358 changes\n 📝\u0000 jobtitle: 236 changes\n 📝\u0000 mobilephone: 183 changes\n\n 🔔\u0000 Event: creation\n Count: 244\n\n 🔔\u0000 Event: association_change\n Count: 673\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 forecast_probability: 12 changes\n 📝\u0000 probability_justification: 12 changes\n 📝\u0000 metrics: 4 changes\n 📝\u0000 paper_process: 2 changes\n 📝\u0000 competition: 2 changes\n 📝\u0000 amount: 3 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 economic_buyer: 2 changes\n 📝\u0000 decision_criteria: 2 changes\n 📝\u0000 decision_process: 2 changes\n 📝\u0000 identify_pain: 2 changes\n 📝\u0000 champion: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 1065 (Integrum ESG - 1126), Date 2026-04-16.","depth":4,"value":"📝\u0000 associatedcompanyid: 15 changes\n 📝\u0000 mobilephone: 3 changes\n\n 🔔\u0000 Event: association_change\n Count: 35\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 36\n\n 🔔\u0000 Event: property_change\n Count: 24\n Properties:\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 domain: 5 changes\n 📝\u0000 country: 4 changes\n 📝\u0000 industry: 4 changes\n 📝\u0000 name: 4 changes\n 📝\u0000 phone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 4\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1\n Properties:\n 📝\u0000 hs_deal_stage_probability: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: creation\n Count: 1\n\n\n INFO Looking for metrics: Config 428 (Welcome to the Jungle UK - 461), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 428 (Welcome to the Jungle UK - 461)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 107\n\n 🔔\u0000 Event: property_change\n Count: 352\n Properties:\n 📝\u0000 firstname: 34 changes\n 📝\u0000 email: 35 changes\n 📝\u0000 lastname: 32 changes\n 📝\u0000 associatedcompanyid: 37 changes\n 📝\u0000 country: 29 changes\n 📝\u0000 jobtitle: 29 changes\n 📝\u0000 phone: 43 changes\n 📝\u0000 hubspot_owner_id: 108 changes\n 📝\u0000 mobilephone: 5 changes\n\n 🔔\u0000 Event: creation\n Count: 32\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 225\n Properties:\n 📝\u0000 hs_deal_stage_probability: 53 changes\n 📝\u0000 product: 7 changes\n 📝\u0000 closedate: 20 changes\n 📝\u0000 dealstage: 40 changes\n 📝\u0000 hs_manual_forecast_category: 31 changes\n 📝\u0000 amount: 26 changes\n 📝\u0000 deal_currency_code: 17 changes\n 📝\u0000 dealname: 5 changes\n 📝\u0000 segment: 16 changes\n 📝\u0000 hs_next_step: 6 changes\n 📝\u0000 deal_source: 4 changes\n\n 🔔\u0000 Event: creation\n Count: 14\n\n 🔔\u0000 Event: association_change\n Count: 41\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 34\n Properties:\n 📝\u0000 hubspot_owner_id: 18 changes\n 📝\u0000 domain: 9 changes\n 📝\u0000 name: 7 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 130\n\n\n INFO Looking for metrics: Config 581 (Penfold - 606), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 581 (Penfold - 606)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 161\n\n 🔔\u0000 Event: creation\n Count: 117\n\n 🔔\u0000 Event: property_change\n Count: 574\n Properties:\n 📝\u0000 email: 117 changes\n 📝\u0000 lastname: 69 changes\n 📝\u0000 firstname: 74 changes\n 📝\u0000 associatedcompanyid: 74 changes\n 📝\u0000 hubspot_owner_id: 156 changes\n 📝\u0000 jobtitle: 28 changes\n 📝\u0000 country: 22 changes\n 📝\u0000 phone: 18 changes\n 📝\u0000 mobilephone: 16 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 21\n\n 🔔\u0000 Event: property_change\n Count: 78\n Properties:\n 📝\u0000 domain: 22 changes\n 📝\u0000 name: 23 changes\n 📝\u0000 hubspot_owner_id: 27 changes\n 📝\u0000 phone: 3 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 167\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 18\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 dealstage: 13 changes\n 📝\u0000 hs_deal_stage_probability: 18 changes\n 📝\u0000 hs_manual_forecast_category: 10 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 hs_next_step: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 closedate: 3 changes\n\n\n INFO Looking for metrics: Config 1015 (Travefy - 1049), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1015 (Travefy - 1049)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 1064\n Properties:\n 📝\u0000 firstname: 194 changes\n 📝\u0000 phone: 141 changes\n 📝\u0000 email: 156 changes\n 📝\u0000 lastname: 171 changes\n 📝\u0000 associatedcompanyid: 156 changes\n 📝\u0000 hubspot_owner_id: 228 changes\n 📝\u0000 jobtitle: 11 changes\n 📝\u0000 mobilephone: 5 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 154\n\n 🔔\u0000 Event: association_change\n Count: 411\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1072\n Properties:\n 📝\u0000 deal_currency_code: 98 changes\n 📝\u0000 amount: 108 changes\n 📝\u0000 hs_deal_stage_probability: 262 changes\n 📝\u0000 hs_manual_forecast_category: 217 changes\n 📝\u0000 hubspot_owner_id: 107 changes\n 📝\u0000 closedate: 109 changes\n 📝\u0000 dealstage: 163 changes\n 📝\u0000 seats_interest: 2 changes\n 📝\u0000 pipeline: 5 changes\n 📝\u0000 competitor_deal: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 99\n\n 🔔\u0000 Event: association_change\n Count: 297\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 151\n\n 🔔\u0000 Event: association_change\n Count: 510\n\n 🔔\u0000 Event: property_change\n Count: 263\n Properties:\n 📝\u0000 name: 171 changes\n 📝\u0000 hubspot_owner_id: 92 changes\n\n\n INFO Looking for metrics: Config 413 (VCC - 347), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 413 (VCC - 347)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 10\n Properties:\n 📝\u0000 closedate: 3 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 dealstage: 2 changes\n 📝\u0000 hs_deal_stage_probability: 2 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 1\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 12\n Properties:\n 📝\u0000 email: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 associatedcompanyid: 1 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 2\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 18\n Properties:\n 📝\u0000 name: 9 changes\n 📝\u0000 domain: 9 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n\n INFO Looking for metrics: Config 591 (Data & AI Literacy Academy - 615), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 591 (Data & AI Literacy Academy - 615)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 30\n Properties:\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 name: 7 changes\n 📝\u0000 domain: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 122\n\n 🔔\u0000 Event: creation\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 34\n Properties:\n 📝\u0000 amount: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 closedate: 10 changes\n 📝\u0000 dealstage: 6 changes\n 📝\u0000 hs_deal_stage_probability: 6 changes\n 📝\u0000 hs_manual_forecast_category: 9 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 39\n\n 🔔\u0000 Event: association_change\n Count: 122\n\n 🔔\u0000 Event: property_change\n Count: 306\n Properties:\n 📝\u0000 jobtitle: 29 changes\n 📝\u0000 hubspot_owner_id: 70 changes\n 📝\u0000 firstname: 36 changes\n 📝\u0000 lastname: 36 changes\n 📝\u0000 associatedcompanyid: 42 changes\n 📝\u0000 mobilephone: 27 changes\n 📝\u0000 email: 39 changes\n 📝\u0000 phone: 27 changes\n\n\n INFO Looking for metrics: Config 1031 (CUCollaborate - 1096), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1031 (CUCollaborate - 1096)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: property_change\n Count: 100\n Properties:\n 📝\u0000 country: 12 changes\n 📝\u0000 jobtitle: 16 changes\n 📝\u0000 phone: 10 changes\n 📝\u0000 email: 14 changes\n 📝\u0000 hubspot_owner_id: 15 changes\n 📝\u0000 lastname: 8 changes\n 📝\u0000 firstname: 9 changes\n 📝\u0000 associatedcompanyid: 9 changes\n 📝\u0000 mobilephone: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 24\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: association_change\n Count: 16\n\n 🔔\u0000 Event: property_change\n Count: 47\n Properties:\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 hs_deal_stage_probability: 12 changes\n 📝\u0000 closedate: 9 changes\n 📝\u0000 hs_manual_forecast_category: 10 changes\n 📝\u0000 dealname: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 2 changes\n 📝\u0000 hs_next_step: 2 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 2\n\n 🔔\u0000 Event: property_change\n Count: 12\n Properties:\n 📝\u0000 country: 2 changes\n 📝\u0000 domain: 2 changes\n 📝\u0000 industry: 2 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 1025 (Predictiv - 1092), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1025 (Predictiv - 1092)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 domain: 2 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: creation\n Count: 2\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 6\n\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 email: 3 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 associatedcompanyid: 3 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 firstname: 2 changes\n 📝\u0000 lastname: 2 changes\n 📝\u0000 jobtitle: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 1051 (IndySoft - 1115), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1051 (IndySoft - 1115)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: association_change\n Count: 29\n\n 🔔\u0000 Event: property_change\n Count: 11\n Properties:\n 📝\u0000 domain: 4 changes\n 📝\u0000 name: 2 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 17\n Properties:\n 📝\u0000 dealstage: 3 changes\n 📝\u0000 hs_deal_stage_probability: 4 changes\n 📝\u0000 hs_manual_forecast_category: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 4 changes\n 📝\u0000 closedate: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 3\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 64\n Properties:\n 📝\u0000 associatedcompanyid: 10 changes\n 📝\u0000 email: 7 changes\n 📝\u0000 lastname: 11 changes\n 📝\u0000 firstname: 11 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 phone: 9 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 28\n\n\n INFO Looking for metrics: Config 966 (Crowdcube Ltd - 263), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 966 (Crowdcube Ltd - 263)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 12\n\n 🔔\u0000 Event: property_change\n Count: 204\n Properties:\n 📝\u0000 amount: 6 changes\n 📝\u0000 amount_in_home_currency: 6 changes\n 📝\u0000 dealstage: 46 changes\n 📝\u0000 hs_deal_stage_probability: 53 changes\n 📝\u0000 hs_manual_forecast_category: 52 changes\n 📝\u0000 closedate: 40 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 39\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 126\n Properties:\n 📝\u0000 phone: 5 changes\n 📝\u0000 firstname: 19 changes\n 📝\u0000 lastname: 17 changes\n 📝\u0000 hubspot_owner_id: 27 changes\n 📝\u0000 email: 20 changes\n 📝\u0000 associatedcompanyid: 16 changes\n 📝\u0000 country: 8 changes\n 📝\u0000 jobtitle: 13 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 22\n\n 🔔\u0000 Event: association_change\n Count: 45\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 61\n Properties:\n 📝\u0000 domain: 13 changes\n 📝\u0000 name: 12 changes\n 📝\u0000 industry: 8 changes\n 📝\u0000 phone: 6 changes\n 📝\u0000 hubspot_owner_id: 16 changes\n 📝\u0000 country: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 58\n\n 🔔\u0000 Event: creation\n Count: 13\n\n\n INFO Looking for metrics: Config 300 (Prowly - 318), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 300 (Prowly - 318)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 10\n\n 🔔\u0000 Event: association_change\n Count: 66\n\n 🔔\u0000 Event: property_change\n Count: 26\n Properties:\n 📝\u0000 hubspot_owner_id: 3 changes\n 📝\u0000 domain: 10 changes\n 📝\u0000 name: 10 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 country: 1 changes\n 📝\u0000 phone: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: creation\n Count: 33\n\n 🔔\u0000 Event: association_change\n Count: 55\n\n 🔔\u0000 Event: property_change\n Count: 114\n Properties:\n 📝\u0000 firstname: 23 changes\n 📝\u0000 email: 33 changes\n 📝\u0000 lastname: 9 changes\n 📝\u0000 country: 9 changes\n 📝\u0000 associatedcompanyid: 21 changes\n 📝\u0000 hubspot_owner_id: 15 changes\n 📝\u0000 phone: 2 changes\n 📝\u0000 jobtitle: 2 changes\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 80\n Properties:\n 📝\u0000 pipeline: 2 changes\n 📝\u0000 dealstage: 10 changes\n 📝\u0000 amount: 20 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 closedate: 15 changes\n 📝\u0000 hs_deal_stage_probability: 16 changes\n 📝\u0000 deal_currency_code: 8 changes\n 📝\u0000 dealtype: 5 changes\n 📝\u0000 hubspot_owner_id: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 9\n\n 🔔\u0000 Event: association_change\n Count: 37\n\n\n INFO Looking for metrics: Config 265 (Orbital - 283), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 265 (Orbital - 283)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 3\n\n 🔔\u0000 Event: property_change\n Count: 207\n Properties:\n 📝\u0000 deal_risk: 62 changes\n 📝\u0000 deal_probability: 29 changes\n 📝\u0000 competitors_summary: 42 changes\n 📝\u0000 closure_forecast: 33 changes\n 📝\u0000 competitors: 12 changes\n 📝\u0000 hs_deal_stage_probability: 5 changes\n 📝\u0000 dealstage: 7 changes\n 📝\u0000 deal_risk_dropdown: 6 changes\n 📝\u0000 amount: 10 changes\n 📝\u0000 hs_next_step: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 45\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 48\n Properties:\n 📝\u0000 industry: 21 changes\n 📝\u0000 domain: 11 changes\n 📝\u0000 name: 9 changes\n 📝\u0000 hubspot_owner_id: 3 changes\n 📝\u0000 country: 2 changes\n 📝\u0000 phone: 2 changes\n\n 🔔\u0000 Event: creation\n Count: 11\n\n 🔔\u0000 Event: association_change\n Count: 862\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 1151\n Properties:\n 📝\u0000 hubspot_owner_id: 136 changes\n 📝\u0000 phone: 112 changes\n 📝\u0000 country: 131 changes\n 📝\u0000 lastname: 131 changes\n 📝\u0000 email: 118 changes\n 📝\u0000 associatedcompanyid: 261 changes\n 📝\u0000 firstname: 131 changes\n 📝\u0000 jobtitle: 125 changes\n 📝\u0000 mobilephone: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 134\n\n 🔔\u0000 Event: association_change\n Count: 839\n\n\n INFO Looking for metrics: Config 104 (Just Eat for Business - 111), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 104 (Just Eat for Business - 111)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: property_change\n Count: 35\n Properties:\n 📝\u0000 name: 11 changes\n 📝\u0000 hubspot_owner_id: 18 changes\n 📝\u0000 domain: 6 changes\n\n 🔔\u0000 Event: association_change\n Count: 98\n\n 🔔\u0000 Event: creation\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 11\n\n 🔔\u0000 Event: association_change\n Count: 27\n\n 🔔\u0000 Event: property_change\n Count: 21\n Properties:\n 📝\u0000 hs_deal_stage_probability: 12 changes\n 📝\u0000 hubspot_owner_id: 4 changes\n 📝\u0000 dealstage: 1 changes\n 📝\u0000 hs_manual_forecast_category: 2 changes\n 📝\u0000 closedate: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 797\n Properties:\n 📝\u0000 firstname: 147 changes\n 📝\u0000 email: 172 changes\n 📝\u0000 phone: 238 changes\n 📝\u0000 lastname: 148 changes\n 📝\u0000 associatedcompanyid: 38 changes\n 📝\u0000 hubspot_owner_id: 42 changes\n 📝\u0000 jobtitle: 9 changes\n 📝\u0000 mobilephone: 2 changes\n 📝\u0000 country: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 52\n\n 🔔\u0000 Event: association_change\n Count: 89\n\n\n INFO Looking for metrics: Config 1062 (Sigma Labs - 1124), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1062 (Sigma Labs - 1124)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 38\n Properties:\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 firstname: 4 changes\n 📝\u0000 jobtitle: 3 changes\n 📝\u0000 lastname: 4 changes\n 📝\u0000 email: 10 changes\n 📝\u0000 hubspot_owner_id: 8 changes\n 📝\u0000 associatedcompanyid: 5 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 country: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n 🔔\u0000 Event: creation\n Count: 6\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 5\n Properties:\n 📝\u0000 country: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 phone: 1 changes\n 📝\u0000 industry: 1 changes\n 📝\u0000 domain: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 10\n\n\n INFO Looking for metrics: Config 949 (Truvi - 1023), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 949 (Truvi - 1023)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 967\n\n 🔔\u0000 Event: property_change\n Count: 287\n Properties:\n 📝\u0000 lastname: 47 changes\n 📝\u0000 email: 75 changes\n 📝\u0000 firstname: 55 changes\n 📝\u0000 hubspot_owner_id: 57 changes\n 📝\u0000 associatedcompanyid: 27 changes\n 📝\u0000 phone: 12 changes\n 📝\u0000 jobtitle: 8 changes\n 📝\u0000 country: 5 changes\n 📝\u0000 mobilephone: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 81\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: creation\n Count: 18\n\n 🔔\u0000 Event: association_change\n Count: 1278\n\n 🔔\u0000 Event: property_change\n Count: 526\n Properties:\n 📝\u0000 hs_deal_stage_probability: 262 changes\n 📝\u0000 dealstage: 247 changes\n 📝\u0000 closedate: 11 changes\n 📝\u0000 dealname: 2 changes\n 📝\u0000 deal_currency_code: 2 changes\n 📝\u0000 createdate: 1 changes\n 📝\u0000 pipeline: 1 changes\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 451\n\n 🔔\u0000 Event: property_change\n Count: 68\n Properties:\n 📝\u0000 name: 34 changes\n 📝\u0000 domain: 28 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n\n 🔔\u0000 Event: creation\n Count: 37\n\n\n INFO Looking for metrics: Config 945 (Shinydocs - 1019), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 945 (Shinydocs - 1019)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: association_change\n Count: 8\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: association_change\n Count: 7\n\n 🔔\u0000 Event: creation\n Count: 1\n\n 🔔\u0000 Event: property_change\n Count: 23\n Properties:\n 📝\u0000 dealstage: 8 changes\n 📝\u0000 hs_deal_stage_probability: 9 changes\n 📝\u0000 pipeline: 1 changes\n 📝\u0000 closedate: 1 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 amount: 1 changes\n 📝\u0000 amount_in_home_currency: 2 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: association_change\n Count: 11\n\n 🔔\u0000 Event: property_change\n Count: 14\n Properties:\n 📝\u0000 email: 3 changes\n 📝\u0000 hubspot_owner_id: 6 changes\n 📝\u0000 associatedcompanyid: 3 changes\n 📝\u0000 lastname: 1 changes\n 📝\u0000 firstname: 1 changes\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 959 (Voyager - 1031), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 959 (Voyager - 1031)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 5\n\n 🔔\u0000 Event: property_change\n Count: 8\n Properties:\n 📝\u0000 domain: 5 changes\n 📝\u0000 hubspot_owner_id: 1 changes\n 📝\u0000 name: 1 changes\n 📝\u0000 industry: 1 changes\n\n 🔔\u0000 Event: association_change\n Count: 22\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 1\n Properties:\n 📝\u0000 amount: 1 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 82\n Properties:\n 📝\u0000 hubspot_owner_id: 7 changes\n 📝\u0000 email: 13 changes\n 📝\u0000 jobtitle: 7 changes\n 📝\u0000 firstname: 16 changes\n 📝\u0000 lastname: 17 changes\n 📝\u0000 country: 3 changes\n 📝\u0000 associatedcompanyid: 11 changes\n 📝\u0000 mobilephone: 1 changes\n 📝\u0000 phone: 7 changes\n\n 🔔\u0000 Event: association_change\n Count: 22\n\n 🔔\u0000 Event: creation\n Count: 11\n\n\n INFO Looking for metrics: Config 1045 (Cove - 1110), Date 2026-04-16. \n\n📊\u0000 Webhook Metrics for Config 1045 (Cove - 1110)\n==========================================\nDate: 2026-04-16\n\n 📦\u0000 Object Type: company\n 🔔\u0000 Event: creation\n Count: 92\n\n 🔔\u0000 Event: association_change\n Count: 676\n\n 🔔\u0000 Event: property_change\n Count: 349\n Properties:\n 📝\u0000 domain: 92 changes\n 📝\u0000 country: 76 changes\n 📝\u0000 hubspot_owner_id: 95 changes\n 📝\u0000 name: 86 changes\n\n 📦\u0000 Object Type: contact\n 🔔\u0000 Event: property_change\n Count: 2007\n Properties:\n 📝\u0000 lastname: 242 changes\n 📝\u0000 email: 223 changes\n 📝\u0000 firstname: 244 changes\n 📝\u0000 associatedcompanyid: 286 changes\n 📝\u0000 phone: 235 changes\n 📝\u0000 hubspot_owner_id: 358 changes\n 📝\u0000 jobtitle: 236 changes\n 📝\u0000 mobilephone: 183 changes\n\n 🔔\u0000 Event: creation\n Count: 244\n\n 🔔\u0000 Event: association_change\n Count: 673\n\n 📦\u0000 Object Type: deal\n 🔔\u0000 Event: property_change\n Count: 49\n Properties:\n 📝\u0000 forecast_probability: 12 changes\n 📝\u0000 probability_justification: 12 changes\n 📝\u0000 metrics: 4 changes\n 📝\u0000 paper_process: 2 changes\n 📝\u0000 competition: 2 changes\n 📝\u0000 amount: 3 changes\n 📝\u0000 hs_deal_stage_probability: 3 changes\n 📝\u0000 deal_currency_code: 1 changes\n 📝\u0000 economic_buyer: 2 changes\n 📝\u0000 decision_criteria: 2 changes\n 📝\u0000 decision_process: 2 changes\n 📝\u0000 identify_pain: 2 changes\n 📝\u0000 champion: 2 changes\n\n 🔔\u0000 Event: association_change\n Count: 9\n\n 🔔\u0000 Event: creation\n Count: 3\n\n\n INFO Looking for metrics: Config 1065 (Integrum ESG - 1126), Date 2026-04-16.","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
-4951418090091676366
|
7542078218959194997
|
idle
|
accessibility
|
NULL
|
📝 associatedcompanyid: 15 changes
📝 📝 associatedcompanyid: 15 changes
📝 mobilephone: 3 changes
🔔 Event: association_change
Count: 35
📦 Object Type: company
🔔 Event: association_change
Count: 36
🔔 Event: property_change
Count: 24
Properties:
📝 hubspot_owner_id: 6 changes
📝 domain: 5 changes
📝 country: 4 changes
📝 industry: 4 changes
📝 name: 4 changes
📝 phone: 1 changes
🔔 Event: creation
Count: 4
📦 Object Type: deal
🔔 Event: property_change
Count: 1
Properties:
📝 hs_deal_stage_probability: 1 changes
🔔 Event: association_change
Count: 3
🔔 Event: creation
Count: 1
INFO Looking for metrics: Config 428 (Welcome to the Jungle UK - 461), Date 2026-04-16.
📊 Webhook Metrics for Config 428 (Welcome to the Jungle UK - 461)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 107
🔔 Event: property_change
Count: 352
Properties:
📝 firstname: 34 changes
📝 email: 35 changes
📝 lastname: 32 changes
📝 associatedcompanyid: 37 changes
📝 country: 29 changes
📝 jobtitle: 29 changes
📝 phone: 43 changes
📝 hubspot_owner_id: 108 changes
📝 mobilephone: 5 changes
🔔 Event: creation
Count: 32
📦 Object Type: deal
🔔 Event: property_change
Count: 225
Properties:
📝 hs_deal_stage_probability: 53 changes
📝 product: 7 changes
📝 closedate: 20 changes
📝 dealstage: 40 changes
📝 hs_manual_forecast_category: 31 changes
📝 amount: 26 changes
📝 deal_currency_code: 17 changes
📝 dealname: 5 changes
📝 segment: 16 changes
📝 hs_next_step: 6 changes
📝 deal_source: 4 changes
🔔 Event: creation
Count: 14
🔔 Event: association_change
Count: 41
📦 Object Type: company
🔔 Event: property_change
Count: 34
Properties:
📝 hubspot_owner_id: 18 changes
📝 domain: 9 changes
📝 name: 7 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 130
INFO Looking for metrics: Config 581 (Penfold - 606), Date 2026-04-16.
📊 Webhook Metrics for Config 581 (Penfold - 606)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 161
🔔 Event: creation
Count: 117
🔔 Event: property_change
Count: 574
Properties:
📝 email: 117 changes
📝 lastname: 69 changes
📝 firstname: 74 changes
📝 associatedcompanyid: 74 changes
📝 hubspot_owner_id: 156 changes
📝 jobtitle: 28 changes
📝 country: 22 changes
📝 phone: 18 changes
📝 mobilephone: 16 changes
📦 Object Type: company
🔔 Event: creation
Count: 21
🔔 Event: property_change
Count: 78
Properties:
📝 domain: 22 changes
📝 name: 23 changes
📝 hubspot_owner_id: 27 changes
📝 phone: 3 changes
📝 industry: 1 changes
📝 country: 2 changes
🔔 Event: association_change
Count: 167
📦 Object Type: deal
🔔 Event: association_change
Count: 18
🔔 Event: creation
Count: 6
🔔 Event: property_change
Count: 49
Properties:
📝 dealstage: 13 changes
📝 hs_deal_stage_probability: 18 changes
📝 hs_manual_forecast_category: 10 changes
📝 hubspot_owner_id: 2 changes
📝 hs_next_step: 1 changes
📝 amount: 2 changes
📝 closedate: 3 changes
INFO Looking for metrics: Config 1015 (Travefy - 1049), Date 2026-04-16.
📊 Webhook Metrics for Config 1015 (Travefy - 1049)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 1064
Properties:
📝 firstname: 194 changes
📝 phone: 141 changes
📝 email: 156 changes
📝 lastname: 171 changes
📝 associatedcompanyid: 156 changes
📝 hubspot_owner_id: 228 changes
📝 jobtitle: 11 changes
📝 mobilephone: 5 changes
📝 country: 2 changes
🔔 Event: creation
Count: 154
🔔 Event: association_change
Count: 411
📦 Object Type: deal
🔔 Event: property_change
Count: 1072
Properties:
📝 deal_currency_code: 98 changes
📝 amount: 108 changes
📝 hs_deal_stage_probability: 262 changes
📝 hs_manual_forecast_category: 217 changes
📝 hubspot_owner_id: 107 changes
📝 closedate: 109 changes
📝 dealstage: 163 changes
📝 seats_interest: 2 changes
📝 pipeline: 5 changes
📝 competitor_deal: 1 changes
🔔 Event: creation
Count: 99
🔔 Event: association_change
Count: 297
📦 Object Type: company
🔔 Event: creation
Count: 151
🔔 Event: association_change
Count: 510
🔔 Event: property_change
Count: 263
Properties:
📝 name: 171 changes
📝 hubspot_owner_id: 92 changes
INFO Looking for metrics: Config 413 (VCC - 347), Date 2026-04-16.
📊 Webhook Metrics for Config 413 (VCC - 347)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: property_change
Count: 10
Properties:
📝 closedate: 3 changes
📝 amount: 1 changes
📝 dealstage: 2 changes
📝 hs_deal_stage_probability: 2 changes
📝 hs_manual_forecast_category: 2 changes
🔔 Event: association_change
Count: 1
📦 Object Type: contact
🔔 Event: property_change
Count: 12
Properties:
📝 email: 1 changes
📝 hubspot_owner_id: 2 changes
📝 associatedcompanyid: 1 changes
📝 phone: 1 changes
📝 jobtitle: 3 changes
📝 country: 1 changes
📝 lastname: 1 changes
📝 mobilephone: 1 changes
📝 firstname: 1 changes
🔔 Event: association_change
Count: 2
🔔 Event: creation
Count: 1
📦 Object Type: company
🔔 Event: association_change
Count: 3
🔔 Event: property_change
Count: 18
Properties:
📝 name: 9 changes
📝 domain: 9 changes
🔔 Event: creation
Count: 9
INFO Looking for metrics: Config 591 (Data & AI Literacy Academy - 615), Date 2026-04-16.
📊 Webhook Metrics for Config 591 (Data & AI Literacy Academy - 615)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 30
Properties:
📝 hubspot_owner_id: 16 changes
📝 name: 7 changes
📝 domain: 7 changes
🔔 Event: association_change
Count: 122
🔔 Event: creation
Count: 8
📦 Object Type: deal
🔔 Event: property_change
Count: 34
Properties:
📝 amount: 1 changes
📝 hubspot_owner_id: 2 changes
📝 closedate: 10 changes
📝 dealstage: 6 changes
📝 hs_deal_stage_probability: 6 changes
📝 hs_manual_forecast_category: 9 changes
📦 Object Type: contact
🔔 Event: creation
Count: 39
🔔 Event: association_change
Count: 122
🔔 Event: property_change
Count: 306
Properties:
📝 jobtitle: 29 changes
📝 hubspot_owner_id: 70 changes
📝 firstname: 36 changes
📝 lastname: 36 changes
📝 associatedcompanyid: 42 changes
📝 mobilephone: 27 changes
📝 email: 39 changes
📝 phone: 27 changes
INFO Looking for metrics: Config 1031 (CUCollaborate - 1096), Date 2026-04-16.
📊 Webhook Metrics for Config 1031 (CUCollaborate - 1096)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: creation
Count: 9
🔔 Event: property_change
Count: 100
Properties:
📝 country: 12 changes
📝 jobtitle: 16 changes
📝 phone: 10 changes
📝 email: 14 changes
📝 hubspot_owner_id: 15 changes
📝 lastname: 8 changes
📝 firstname: 9 changes
📝 associatedcompanyid: 9 changes
📝 mobilephone: 7 changes
🔔 Event: association_change
Count: 24
📦 Object Type: deal
🔔 Event: creation
Count: 5
🔔 Event: association_change
Count: 16
🔔 Event: property_change
Count: 47
Properties:
📝 dealstage: 7 changes
📝 hs_deal_stage_probability: 12 changes
📝 closedate: 9 changes
📝 hs_manual_forecast_category: 10 changes
📝 dealname: 3 changes
📝 deal_currency_code: 1 changes
📝 amount: 2 changes
📝 hs_next_step: 2 changes
📝 hubspot_owner_id: 1 changes
📦 Object Type: company
🔔 Event: creation
Count: 2
🔔 Event: property_change
Count: 12
Properties:
📝 country: 2 changes
📝 domain: 2 changes
📝 industry: 2 changes
📝 phone: 2 changes
📝 name: 2 changes
📝 hubspot_owner_id: 2 changes
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 1025 (Predictiv - 1092), Date 2026-04-16.
📊 Webhook Metrics for Config 1025 (Predictiv - 1092)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 5
Properties:
📝 domain: 2 changes
📝 name: 2 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: association_change
Count: 6
🔔 Event: creation
Count: 2
📦 Object Type: contact
🔔 Event: association_change
Count: 6
🔔 Event: property_change
Count: 17
Properties:
📝 email: 3 changes
📝 phone: 2 changes
📝 associatedcompanyid: 3 changes
📝 hubspot_owner_id: 2 changes
📝 country: 2 changes
📝 firstname: 2 changes
📝 lastname: 2 changes
📝 jobtitle: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 1051 (IndySoft - 1115), Date 2026-04-16.
📊 Webhook Metrics for Config 1051 (IndySoft - 1115)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: association_change
Count: 29
🔔 Event: property_change
Count: 11
Properties:
📝 domain: 4 changes
📝 name: 2 changes
📝 phone: 1 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 hubspot_owner_id: 2 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 17
Properties:
📝 dealstage: 3 changes
📝 hs_deal_stage_probability: 4 changes
📝 hs_manual_forecast_category: 3 changes
📝 deal_currency_code: 1 changes
📝 amount: 4 changes
📝 closedate: 2 changes
🔔 Event: association_change
Count: 3
🔔 Event: creation
Count: 1
📦 Object Type: contact
🔔 Event: property_change
Count: 64
Properties:
📝 associatedcompanyid: 10 changes
📝 email: 7 changes
📝 lastname: 11 changes
📝 firstname: 11 changes
📝 mobilephone: 1 changes
📝 phone: 9 changes
📝 jobtitle: 7 changes
📝 hubspot_owner_id: 8 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 28
INFO Looking for metrics: Config 966 (Crowdcube Ltd - 263), Date 2026-04-16.
📊 Webhook Metrics for Config 966 (Crowdcube Ltd - 263)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 12
🔔 Event: property_change
Count: 204
Properties:
📝 amount: 6 changes
📝 amount_in_home_currency: 6 changes
📝 dealstage: 46 changes
📝 hs_deal_stage_probability: 53 changes
📝 hs_manual_forecast_category: 52 changes
📝 closedate: 40 changes
📝 hubspot_owner_id: 1 changes
🔔 Event: association_change
Count: 39
📦 Object Type: contact
🔔 Event: property_change
Count: 126
Properties:
📝 phone: 5 changes
📝 firstname: 19 changes
📝 lastname: 17 changes
📝 hubspot_owner_id: 27 changes
📝 email: 20 changes
📝 associatedcompanyid: 16 changes
📝 country: 8 changes
📝 jobtitle: 13 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 22
🔔 Event: association_change
Count: 45
📦 Object Type: company
🔔 Event: property_change
Count: 61
Properties:
📝 domain: 13 changes
📝 name: 12 changes
📝 industry: 8 changes
📝 phone: 6 changes
📝 hubspot_owner_id: 16 changes
📝 country: 6 changes
🔔 Event: association_change
Count: 58
🔔 Event: creation
Count: 13
INFO Looking for metrics: Config 300 (Prowly - 318), Date 2026-04-16.
📊 Webhook Metrics for Config 300 (Prowly - 318)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 10
🔔 Event: association_change
Count: 66
🔔 Event: property_change
Count: 26
Properties:
📝 hubspot_owner_id: 3 changes
📝 domain: 10 changes
📝 name: 10 changes
📝 industry: 1 changes
📝 country: 1 changes
📝 phone: 1 changes
📦 Object Type: contact
🔔 Event: creation
Count: 33
🔔 Event: association_change
Count: 55
🔔 Event: property_change
Count: 114
Properties:
📝 firstname: 23 changes
📝 email: 33 changes
📝 lastname: 9 changes
📝 country: 9 changes
📝 associatedcompanyid: 21 changes
📝 hubspot_owner_id: 15 changes
📝 phone: 2 changes
📝 jobtitle: 2 changes
📦 Object Type: deal
🔔 Event: property_change
Count: 80
Properties:
📝 pipeline: 2 changes
📝 dealstage: 10 changes
📝 amount: 20 changes
📝 dealname: 2 changes
📝 closedate: 15 changes
📝 hs_deal_stage_probability: 16 changes
📝 deal_currency_code: 8 changes
📝 dealtype: 5 changes
📝 hubspot_owner_id: 2 changes
🔔 Event: creation
Count: 9
🔔 Event: association_change
Count: 37
INFO Looking for metrics: Config 265 (Orbital - 283), Date 2026-04-16.
📊 Webhook Metrics for Config 265 (Orbital - 283)
==========================================
Date: 2026-04-16
📦 Object Type: deal
🔔 Event: creation
Count: 3
🔔 Event: property_change
Count: 207
Properties:
📝 deal_risk: 62 changes
📝 deal_probability: 29 changes
📝 competitors_summary: 42 changes
📝 closure_forecast: 33 changes
📝 competitors: 12 changes
📝 hs_deal_stage_probability: 5 changes
📝 dealstage: 7 changes
📝 deal_risk_dropdown: 6 changes
📝 amount: 10 changes
📝 hs_next_step: 1 changes
🔔 Event: association_change
Count: 45
📦 Object Type: company
🔔 Event: property_change
Count: 48
Properties:
📝 industry: 21 changes
📝 domain: 11 changes
📝 name: 9 changes
📝 hubspot_owner_id: 3 changes
📝 country: 2 changes
📝 phone: 2 changes
🔔 Event: creation
Count: 11
🔔 Event: association_change
Count: 862
📦 Object Type: contact
🔔 Event: property_change
Count: 1151
Properties:
📝 hubspot_owner_id: 136 changes
📝 phone: 112 changes
📝 country: 131 changes
📝 lastname: 131 changes
📝 email: 118 changes
📝 associatedcompanyid: 261 changes
📝 firstname: 131 changes
📝 jobtitle: 125 changes
📝 mobilephone: 6 changes
🔔 Event: creation
Count: 134
🔔 Event: association_change
Count: 839
INFO Looking for metrics: Config 104 (Just Eat for Business - 111), Date 2026-04-16.
📊 Webhook Metrics for Config 104 (Just Eat for Business - 111)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: property_change
Count: 35
Properties:
📝 name: 11 changes
📝 hubspot_owner_id: 18 changes
📝 domain: 6 changes
🔔 Event: association_change
Count: 98
🔔 Event: creation
Count: 8
📦 Object Type: deal
🔔 Event: creation
Count: 11
🔔 Event: association_change
Count: 27
🔔 Event: property_change
Count: 21
Properties:
📝 hs_deal_stage_probability: 12 changes
📝 hubspot_owner_id: 4 changes
📝 dealstage: 1 changes
📝 hs_manual_forecast_category: 2 changes
📝 closedate: 2 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 797
Properties:
📝 firstname: 147 changes
📝 email: 172 changes
📝 phone: 238 changes
📝 lastname: 148 changes
📝 associatedcompanyid: 38 changes
📝 hubspot_owner_id: 42 changes
📝 jobtitle: 9 changes
📝 mobilephone: 2 changes
📝 country: 1 changes
🔔 Event: creation
Count: 52
🔔 Event: association_change
Count: 89
INFO Looking for metrics: Config 1062 (Sigma Labs - 1124), Date 2026-04-16.
📊 Webhook Metrics for Config 1062 (Sigma Labs - 1124)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: property_change
Count: 38
Properties:
📝 mobilephone: 1 changes
📝 firstname: 4 changes
📝 jobtitle: 3 changes
📝 lastname: 4 changes
📝 email: 10 changes
📝 hubspot_owner_id: 8 changes
📝 associatedcompanyid: 5 changes
📝 phone: 1 changes
📝 country: 2 changes
🔔 Event: association_change
Count: 10
🔔 Event: creation
Count: 6
📦 Object Type: company
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 5
Properties:
📝 country: 1 changes
📝 name: 1 changes
📝 phone: 1 changes
📝 industry: 1 changes
📝 domain: 1 changes
🔔 Event: association_change
Count: 10
INFO Looking for metrics: Config 949 (Truvi - 1023), Date 2026-04-16.
📊 Webhook Metrics for Config 949 (Truvi - 1023)
==========================================
Date: 2026-04-16
📦 Object Type: contact
🔔 Event: association_change
Count: 967
🔔 Event: property_change
Count: 287
Properties:
📝 lastname: 47 changes
📝 email: 75 changes
📝 firstname: 55 changes
📝 hubspot_owner_id: 57 changes
📝 associatedcompanyid: 27 changes
📝 phone: 12 changes
📝 jobtitle: 8 changes
📝 country: 5 changes
📝 mobilephone: 1 changes
🔔 Event: creation
Count: 81
📦 Object Type: deal
🔔 Event: creation
Count: 18
🔔 Event: association_change
Count: 1278
🔔 Event: property_change
Count: 526
Properties:
📝 hs_deal_stage_probability: 262 changes
📝 dealstage: 247 changes
📝 closedate: 11 changes
📝 dealname: 2 changes
📝 deal_currency_code: 2 changes
📝 createdate: 1 changes
📝 pipeline: 1 changes
📦 Object Type: company
🔔 Event: association_change
Count: 451
🔔 Event: property_change
Count: 68
Properties:
📝 name: 34 changes
📝 domain: 28 changes
📝 hubspot_owner_id: 6 changes
🔔 Event: creation
Count: 37
INFO Looking for metrics: Config 945 (Shinydocs - 1019), Date 2026-04-16.
📊 Webhook Metrics for Config 945 (Shinydocs - 1019)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: association_change
Count: 8
📦 Object Type: deal
🔔 Event: association_change
Count: 7
🔔 Event: creation
Count: 1
🔔 Event: property_change
Count: 23
Properties:
📝 dealstage: 8 changes
📝 hs_deal_stage_probability: 9 changes
📝 pipeline: 1 changes
📝 closedate: 1 changes
📝 deal_currency_code: 1 changes
📝 amount: 1 changes
📝 amount_in_home_currency: 2 changes
📦 Object Type: contact
🔔 Event: association_change
Count: 11
🔔 Event: property_change
Count: 14
Properties:
📝 email: 3 changes
📝 hubspot_owner_id: 6 changes
📝 associatedcompanyid: 3 changes
📝 lastname: 1 changes
📝 firstname: 1 changes
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 959 (Voyager - 1031), Date 2026-04-16.
📊 Webhook Metrics for Config 959 (Voyager - 1031)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 5
🔔 Event: property_change
Count: 8
Properties:
📝 domain: 5 changes
📝 hubspot_owner_id: 1 changes
📝 name: 1 changes
📝 industry: 1 changes
🔔 Event: association_change
Count: 22
📦 Object Type: deal
🔔 Event: property_change
Count: 1
Properties:
📝 amount: 1 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 82
Properties:
📝 hubspot_owner_id: 7 changes
📝 email: 13 changes
📝 jobtitle: 7 changes
📝 firstname: 16 changes
📝 lastname: 17 changes
📝 country: 3 changes
📝 associatedcompanyid: 11 changes
📝 mobilephone: 1 changes
📝 phone: 7 changes
🔔 Event: association_change
Count: 22
🔔 Event: creation
Count: 11
INFO Looking for metrics: Config 1045 (Cove - 1110), Date 2026-04-16.
📊 Webhook Metrics for Config 1045 (Cove - 1110)
==========================================
Date: 2026-04-16
📦 Object Type: company
🔔 Event: creation
Count: 92
🔔 Event: association_change
Count: 676
🔔 Event: property_change
Count: 349
Properties:
📝 domain: 92 changes
📝 country: 76 changes
📝 hubspot_owner_id: 95 changes
📝 name: 86 changes
📦 Object Type: contact
🔔 Event: property_change
Count: 2007
Properties:
📝 lastname: 242 changes
📝 email: 223 changes
📝 firstname: 244 changes
📝 associatedcompanyid: 286 changes
📝 phone: 235 changes
📝 hubspot_owner_id: 358 changes
📝 jobtitle: 236 changes
📝 mobilephone: 183 changes
🔔 Event: creation
Count: 244
🔔 Event: association_change
Count: 673
📦 Object Type: deal
🔔 Event: property_change
Count: 49
Properties:
📝 forecast_probability: 12 changes
📝 probability_justification: 12 changes
📝 metrics: 4 changes
📝 paper_process: 2 changes
📝 competition: 2 changes
📝 amount: 3 changes
📝 hs_deal_stage_probability: 3 changes
📝 deal_currency_code: 1 changes
📝 economic_buyer: 2 changes
📝 decision_criteria: 2 changes
📝 decision_process: 2 changes
📝 identify_pain: 2 changes
📝 champion: 2 changes
🔔 Event: association_change
Count: 9
🔔 Event: creation
Count: 3
INFO Looking for metrics: Config 1065 (Integrum ESG - 1126), Date 2026-04-16.
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69511
|
1599
|
11
|
2026-04-22T08:15:22.861308+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845722861_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🏢 Config 908 (JPA Workspaces - 956) - 1223 webhoo 🏢 Config 908 (JPA Workspaces - 956) - 1223 webhooks
📦 deal: 26 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 14 events, 3 properties
🔔 association_change: 9 events, 0 properties
📦 company: 457 webhooks
🔔 property_change: 447 events, 2 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks
📦 company: 614 webhooks
🔔 property_change: 175 events, 6 properties
🔔 creation: 15 events, 0 properties
🔔 association_change: 424 events, 0 properties
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
📦 deal: 9 webhooks
🔔 property_change: 8 events, 4 properties
🔔 association_change: 1 events, 0 properties
🏢 Config 880 (Immutable - 931) - 7898 webhooks
📦 deal: 27 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 4 events, 2 properties
🔔 association_change: 21 events, 0 properties
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
📦 company: 2284 webhooks
🔔 association_change: 1818 events, 0 properties
🔔 property_change: 308 events, 6 properties
🔔 creation: 158 events, 0 properties
🏢 Config 877 (GroWrk Remote - 927) - 342 webhooks
📦 company: 74 webhooks
🔔 property_change: 25 events, 6 properties
🔔 association_change: 44 events, 0 properties
🔔 creation: 5 events, 0 properties
📦 deal: 151 webhooks
🔔 property_change: 82 events, 11 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 11 events, 0 properties
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 871 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
📦 company: 299 webhooks
🔔 association_change: 188 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 93 events, 6 properties
📦 deal: 78 webhooks
🔔 property_change: 56 events, 9 properties
🔔 creation: 4 events, 0 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 547 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
📦 company: 40 webhooks
🔔 association_change: 30 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 3 properties
📦 deal: 42 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 25 events, 5 properties
🏢 Config 583 (One Core Media - 608) - 99 webhooks
📦 company: 32 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 463 webhooks
📦 company: 161 webhooks
🔔 association_change: 160 events, 0 properties
🔔 property_change: 1 events, 1 properties
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 deal: 147 webhooks
🔔 property_change: 69 events, 12 properties
🔔 association_change: 74 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 982 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
📦 company: 329 webhooks
🔔 property_change: 130 events, 4 properties
🔔 association_change: 154 events, 0 properties
🔔 creation: 45 events, 0 properties
📦 deal: 18 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 5 events, 2 properties
🏢 Config 270 (Heka Happy - 288) - 134 webhooks
📦 company: 34 webhooks
🔔 property_change: 13 events, 5 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 5 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 869 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
📦 deal: 266 webhooks
🔔 creation: 28 events, 0 properties
🔔 property_change: 153 events, 7 properties
🔔 association_change: 85 events, 0 properties
📦 company: 101 webhooks
🔔 association_change: 86 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 creation: 4 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 1101 webhooks
📦 deal: 190 webhooks
🔔 association_change: 57 events, 0 properties
🔔 property_change: 117 events, 8 properties
🔔 creation: 16 events, 0 properties
📦 company: 248 webhooks
🔔 association_change: 149 events, 0 properties
🔔 creation: 26 events, 0 properties
🔔 property_change: 73 events, 5 properties
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 225415 webhooks
📦 company: 35595 webhooks
🔔 property_change: 5687 events, 3 properties
🔔 association_change: 25219 events, 0 properties
🔔 creation: 4689 events, 0 properties
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
📦 deal: 113081 webhooks
🔔 creation: 7588 events, 0 properties
🔔 property_change: 82720 events, 9 properties
🔔 association_change: 22773 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 635 webhooks
📦 deal: 228 webhooks
🔔 property_change: 158 events, 9 properties
🔔 creation: 18 events, 0 properties
🔔 association_change: 52 events, 0 properties
📦 company: 142 webhooks
🔔 property_change: 59 events, 6 properties
🔔 association_change: 69 events, 0 properties
🔔 creation: 14 events, 0 properties
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 374 webhooks
📦 company: 64 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 15 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 118 webhooks
🔔 property_change: 78 events, 10 properties
🔔 association_change: 30 events, 0 properties
🔔 creation: 10 events, 0 properties
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 83 webhooks
📦 company: 11 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
📦 deal: 17 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🔔 property_change: 13 events, 6 properties
🏢 Config 1049 (Classavo - 851) - 24 webhooks
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 1 events, 0 properties
🏢 Config 290 (D1 Training - 308) - 898 webhooks
📦 company: 12 webhooks
🔔 property_change: 5 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 6 events, 0 properties
📦 deal: 480 webhooks
🔔 association_change: 40 events, 0 properties
🔔 creation: 35 events, 0 properties
🔔 property_change: 405 events, 8 properties
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 5388 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
📦 company: 1647 webhooks
🔔 association_change: 698 events, 0 properties
🔔 property_change: 637 events, 6 properties
🔔 creation: 312 events, 0 properties
📦 deal: 55 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 1231 webhooks
📦 company: 274 webhooks
🔔 property_change: 128 events, 6 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 120 events, 0 properties
📦 deal: 464 webhooks
🔔 creation: 16 events, 0 properties
🔔 property_change: 385 events, 23 properties
🔔 association_change: 63 events, 0 properties
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 3864 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
📦 company: 742 webhooks
🔔 association_change: 617 events, 0 properties
🔔 creation: 31 events, 0 properties
🔔 property_change: 94 events, 6 properties
📦 deal: 482 webhooks
🔔 association_change: 121 events, 0 properties
🔔 property_change: 338 events, 11 properties
🔔 creation: 23 events, 0 properties
🏢 Config 1053 (Sensi.AI - 1117) - 8574 webhooks
📦 company: 1694 webhooks
🔔 property_change: 156 events, 6 properties
🔔 creation: 39 events, 0 properties
🔔 association_change: 1499 events, 0 properties
📦 deal: 663 webhooks
🔔 property_change: 491 events, 15 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 74 events, 0 properties
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 2108 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
📦 deal: 39 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 23 events, 6 properties
📦 company: 330 webhooks
🔔 association_change: 298 events, 0 properties
🔔 property_change: 23 events, 5 properties
🔔 creation: 9 events, 0 properties
🏢 Config 518 (Prolific - 544) - 9399 webhooks
📦 deal: 26 webhooks
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
📦 company: 957 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 352 events, 0 properties
🔔 property_change: 575 events, 6 properties
🏢 Config 761 (Ressio Software - 770) - 4387 webhooks
📦 company: 2012 webhooks
🔔 property_change: 1370 events, 6 properties
🔔 creation: 207 events, 0 properties
🔔 association_change: 435 events, 0 properties
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
📦 deal: 255 webhooks
🔔 property_change: 119 events, 5 properties
🔔 creation: 17 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 874 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
📦 company: 64 webhooks
🔔 association_change: 36 events, 0 properties
🔔 property_change: 24 events, 6 properties
🔔 creation: 4 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
📦 deal: 280 webhooks
🔔 property_change: 225 events, 11 properties
🔔 creation: 14 events, 0 properties
🔔 association_change: 41 events, 0 properties
📦 company: 173 webhooks
🔔 property_change: 34 events, 3 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 130 events, 0 properties
🏢 Config 581 (Penfold - 606) - 1191 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
📦 company: 266 webhooks
🔔 creation: 21 events, 0 properties
🔔 property_change: 78 events, 6 properties
🔔 association_change: 167 events, 0 properties
📦 deal: 73 webhooks
🔔 association_change: 18 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 49 events, 7 properties
🏢 Config 1015 (Travefy - 1049) - 4021 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
📦 deal: 1468 webhooks
🔔 property_change: 1072 events, 10 properties
🔔 creation: 99 events, 0 properties
🔔 association_change: 297 events, 0 properties
📦 company: 924 webhooks
🔔 creation: 151 events, 0 properties
🔔 association_change: 510 events, 0 properties
🔔 property_change: 263 events, 2 properties
🏢 Config 413 (VCC - 347) - 56 webhooks
📦 deal: 11 webhooks
🔔 property_change: 10 events, 5 properties
🔔 association_change: 1 events, 0 properties
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 company: 30 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 18 events, 2 properties
🔔 creation: 9 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks
📦 company: 160 webhooks
🔔 property_change: 30 events, 3 properties
🔔 association_change: 122 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 34 webhooks
🔔 property_change: 34 events, 6 properties
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 243 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
📦 deal: 68 webhooks
🔔 creation: 5 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 47 events, 9 properties
📦 company: 42 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 12 events, 6 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 39 webhooks
📦 company: 13 webhooks
🔔 property_change: 5 events, 3 properties
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 163 webhooks
📦 company: 41 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 29 events, 0 properties
🔔 property_change: 11 events, 6 properties
📦 deal: 21 webhooks
🔔 property_change: 17 events, 6 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 580 webhooks
📦 deal: 255 webhooks
🔔 creation: 12 events, 0 properties
🔔 property_change: 204 events, 7 properties
🔔 association_change: 39 events, 0 properties
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
📦 company: 132 webhooks
🔔 property_change: 61 events, 6 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 300 (Prowly - 318) - 430 webhooks
📦 company: 102 webhooks
🔔 creation: 10 events, 0 properties
🔔 association_change: 66 events, 0 properties
🔔 property_change: 26 events, 6 properties
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
📦 deal: 126 webhooks
🔔 property_change: 80 events, 9 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 37 events, 0 properties
🏢 Config 265 (Orbital - 283) - 3300 webhooks
📦 deal: 255 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 207 events, 10 properties
🔔 association_change: 45 events, 0 properties
📦 company: 921 webhooks
🔔 property_change: 48 events, 6 properties
🔔 creation: 11 events, 0 properties
🔔 association_change: 862 events, 0 properties
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 1138 webhooks
📦 company: 141 webhooks
🔔 property_change: 35 events, 3 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 59 webhooks
🔔 creation: 11 events, 0 properties
🔔 association_change: 27 events, 0 properties
🔔 property_change: 21 events, 5 properties
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 70 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
📦 company: 16 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🔔 association_change: 10 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 3713 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
📦 deal: 1822 webhooks
🔔 creation: 18 events, 0 properties
🔔 association_change: 1278 events, 0 properties
🔔 property_change: 526 events, 7 properties
📦 company: 556 webhooks
🔔 association_change: 451 events, 0 properties
🔔 property_change: 68 events, 3 properties
🔔 creation: 37 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 67 webhooks
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 31 webhooks
🔔 association_change: 7 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 23 events, 7 properties
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 151 webhooks
📦 company: 35 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 8 events, 4 properties
🔔 association_change: 22 events, 0 properties
📦 deal: 1 webhooks
🔔 property_change: 1 events, 1 properties
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 4102 webhooks
📦 company: 1117 webhooks
🔔 creation: 92 events, 0 properties
🔔 association_change: 676 events, 0 properties
🔔 property_change: 349 events, 4 properties
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
📦 deal: 61 webhooks
🔔 property_change: 49 events, 13 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 97 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 20 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 3 properties
🔔 association_change: 14 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 2244 webhooks
📦 company: 297 webhooks
🔔 property_change: 104 events, 3 properties
🔔 association_change: 155 events, 0 properties
🔔 creation: 38 events, 0 properties
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
📦 deal: 430 webhooks
🔔 property_change: 285 events, 6 properties
🔔 creation: 40 events, 0 properties
🔔 association_change: 105 events, 0 properties
🏢 Config 339 (Rosterfy - 359) - 1274 webhooks
📦 deal: 86 webhooks
🔔 property_change: 69 events, 8 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 14 events, 0 properties
📦 company: 370 webhooks
🔔 creation: 33 events, 0 properties
🔔 property_change: 163 events, 6 properties
🔔 association_change: 174 events, 0 properties
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 344 webhooks
📦 deal: 82 webhooks
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 70 events, 8 properties
📦 company: 89 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🔔 property_change: 34 events, 4 properties
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 174 webhooks
📦 company: 40 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 22 events, 5 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🏢\u0000 Config 908 (JPA Workspaces - 956) - 1223 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 3 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 company: 457 webhooks\n 🔔\u0000 property_change: 447 events, 2 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks\n 📦\u0000 company: 614 webhooks\n 🔔\u0000 property_change: 175 events, 6 properties\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 association_change: 424 events, 0 properties\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n 📦\u0000 deal: 9 webhooks\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 7898 webhooks\n 📦\u0000 deal: 27 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 4 events, 2 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n 📦\u0000 company: 2284 webhooks\n 🔔\u0000 association_change: 1818 events, 0 properties\n 🔔\u0000 property_change: 308 events, 6 properties\n 🔔\u0000 creation: 158 events, 0 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 342 webhooks\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 property_change: 25 events, 6 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 deal: 151 webhooks\n 🔔\u0000 property_change: 82 events, 11 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 871 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n 📦\u0000 company: 299 webhooks\n 🔔\u0000 association_change: 188 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 93 events, 6 properties\n 📦\u0000 deal: 78 webhooks\n 🔔\u0000 property_change: 56 events, 9 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 547 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 3 properties\n 📦\u0000 deal: 42 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 25 events, 5 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 99 webhooks\n 📦\u0000 company: 32 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 463 webhooks\n 📦\u0000 company: 161 webhooks\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 147 webhooks\n 🔔\u0000 property_change: 69 events, 12 properties\n 🔔\u0000 association_change: 74 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 982 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n 📦\u0000 company: 329 webhooks\n 🔔\u0000 property_change: 130 events, 4 properties\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 45 events, 0 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 5 events, 2 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 134 webhooks\n 📦\u0000 company: 34 webhooks\n 🔔\u0000 property_change: 13 events, 5 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 869 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n 📦\u0000 deal: 266 webhooks\n 🔔\u0000 creation: 28 events, 0 properties\n 🔔\u0000 property_change: 153 events, 7 properties\n 🔔\u0000 association_change: 85 events, 0 properties\n 📦\u0000 company: 101 webhooks\n 🔔\u0000 association_change: 86 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 1101 webhooks\n 📦\u0000 deal: 190 webhooks\n 🔔\u0000 association_change: 57 events, 0 properties\n 🔔\u0000 property_change: 117 events, 8 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 📦\u0000 company: 248 webhooks\n 🔔\u0000 association_change: 149 events, 0 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 property_change: 73 events, 5 properties\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 225415 webhooks\n 📦\u0000 company: 35595 webhooks\n 🔔\u0000 property_change: 5687 events, 3 properties\n 🔔\u0000 association_change: 25219 events, 0 properties\n 🔔\u0000 creation: 4689 events, 0 properties\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n 📦\u0000 deal: 113081 webhooks\n 🔔\u0000 creation: 7588 events, 0 properties\n 🔔\u0000 property_change: 82720 events, 9 properties\n 🔔\u0000 association_change: 22773 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 635 webhooks\n 📦\u0000 deal: 228 webhooks\n 🔔\u0000 property_change: 158 events, 9 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 52 events, 0 properties\n 📦\u0000 company: 142 webhooks\n 🔔\u0000 property_change: 59 events, 6 properties\n 🔔\u0000 association_change: 69 events, 0 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 374 webhooks\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 118 webhooks\n 🔔\u0000 property_change: 78 events, 10 properties\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 83 webhooks\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 deal: 17 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 13 events, 6 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 24 webhooks\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 898 webhooks\n 📦\u0000 company: 12 webhooks\n 🔔\u0000 property_change: 5 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 📦\u0000 deal: 480 webhooks\n 🔔\u0000 association_change: 40 events, 0 properties\n 🔔\u0000 creation: 35 events, 0 properties\n 🔔\u0000 property_change: 405 events, 8 properties\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 5388 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n 📦\u0000 company: 1647 webhooks\n 🔔\u0000 association_change: 698 events, 0 properties\n 🔔\u0000 property_change: 637 events, 6 properties\n 🔔\u0000 creation: 312 events, 0 properties\n 📦\u0000 deal: 55 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 1231 webhooks\n 📦\u0000 company: 274 webhooks\n 🔔\u0000 property_change: 128 events, 6 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 120 events, 0 properties\n 📦\u0000 deal: 464 webhooks\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 385 events, 23 properties\n 🔔\u0000 association_change: 63 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 3864 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n 📦\u0000 company: 742 webhooks\n 🔔\u0000 association_change: 617 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 🔔\u0000 property_change: 94 events, 6 properties\n 📦\u0000 deal: 482 webhooks\n 🔔\u0000 association_change: 121 events, 0 properties\n 🔔\u0000 property_change: 338 events, 11 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 8574 webhooks\n 📦\u0000 company: 1694 webhooks\n 🔔\u0000 property_change: 156 events, 6 properties\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 1499 events, 0 properties\n 📦\u0000 deal: 663 webhooks\n 🔔\u0000 property_change: 491 events, 15 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 74 events, 0 properties\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 2108 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n 📦\u0000 deal: 39 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 23 events, 6 properties\n 📦\u0000 company: 330 webhooks\n 🔔\u0000 association_change: 298 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 9399 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n 📦\u0000 company: 957 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 352 events, 0 properties\n 🔔\u0000 property_change: 575 events, 6 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 4387 webhooks\n 📦\u0000 company: 2012 webhooks\n 🔔\u0000 property_change: 1370 events, 6 properties\n 🔔\u0000 creation: 207 events, 0 properties\n 🔔\u0000 association_change: 435 events, 0 properties\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 property_change: 119 events, 5 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 874 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 association_change: 36 events, 0 properties\n 🔔\u0000 property_change: 24 events, 6 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n 📦\u0000 deal: 280 webhooks\n 🔔\u0000 property_change: 225 events, 11 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 🔔\u0000 association_change: 41 events, 0 properties\n 📦\u0000 company: 173 webhooks\n 🔔\u0000 property_change: 34 events, 3 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 130 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 1191 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n 📦\u0000 company: 266 webhooks\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 78 events, 6 properties\n 🔔\u0000 association_change: 167 events, 0 properties\n 📦\u0000 deal: 73 webhooks\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 49 events, 7 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 4021 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n 📦\u0000 deal: 1468 webhooks\n 🔔\u0000 property_change: 1072 events, 10 properties\n 🔔\u0000 creation: 99 events, 0 properties\n 🔔\u0000 association_change: 297 events, 0 properties\n 📦\u0000 company: 924 webhooks\n 🔔\u0000 creation: 151 events, 0 properties\n 🔔\u0000 association_change: 510 events, 0 properties\n 🔔\u0000 property_change: 263 events, 2 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 56 webhooks\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 10 events, 5 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 30 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 18 events, 2 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks\n 📦\u0000 company: 160 webhooks\n 🔔\u0000 property_change: 30 events, 3 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 34 webhooks\n 🔔\u0000 property_change: 34 events, 6 properties\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 243 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 📦\u0000 deal: 68 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 47 events, 9 properties\n 📦\u0000 company: 42 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 12 events, 6 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 39 webhooks\n 📦\u0000 company: 13 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 163 webhooks\n 📦\u0000 company: 41 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 property_change: 11 events, 6 properties\n 📦\u0000 deal: 21 webhooks\n 🔔\u0000 property_change: 17 events, 6 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 580 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 property_change: 204 events, 7 properties\n 🔔\u0000 association_change: 39 events, 0 properties\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 132 webhooks\n 🔔\u0000 property_change: 61 events, 6 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 430 webhooks\n 📦\u0000 company: 102 webhooks\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 66 events, 0 properties\n 🔔\u0000 property_change: 26 events, 6 properties\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n 📦\u0000 deal: 126 webhooks\n 🔔\u0000 property_change: 80 events, 9 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 37 events, 0 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 3300 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 207 events, 10 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 921 webhooks\n 🔔\u0000 property_change: 48 events, 6 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 862 events, 0 properties\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 1138 webhooks\n 📦\u0000 company: 141 webhooks\n 🔔\u0000 property_change: 35 events, 3 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 59 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 property_change: 21 events, 5 properties\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 70 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 16 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 3713 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n 📦\u0000 deal: 1822 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 1278 events, 0 properties\n 🔔\u0000 property_change: 526 events, 7 properties\n 📦\u0000 company: 556 webhooks\n 🔔\u0000 association_change: 451 events, 0 properties\n 🔔\u0000 property_change: 68 events, 3 properties\n 🔔\u0000 creation: 37 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 67 webhooks\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 31 webhooks\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 23 events, 7 properties\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 151 webhooks\n 📦\u0000 company: 35 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 deal: 1 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 4102 webhooks\n 📦\u0000 company: 1117 webhooks\n 🔔\u0000 creation: 92 events, 0 properties\n 🔔\u0000 association_change: 676 events, 0 properties\n 🔔\u0000 property_change: 349 events, 4 properties\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n 📦\u0000 deal: 61 webhooks\n 🔔\u0000 property_change: 49 events, 13 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 97 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 2244 webhooks\n 📦\u0000 company: 297 webhooks\n 🔔\u0000 property_change: 104 events, 3 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n 🔔\u0000 creation: 38 events, 0 properties\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n 📦\u0000 deal: 430 webhooks\n 🔔\u0000 property_change: 285 events, 6 properties\n 🔔\u0000 creation: 40 events, 0 properties\n 🔔\u0000 association_change: 105 events, 0 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 1274 webhooks\n 📦\u0000 deal: 86 webhooks\n 🔔\u0000 property_change: 69 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n 📦\u0000 company: 370 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 163 events, 6 properties\n 🔔\u0000 association_change: 174 events, 0 properties\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 344 webhooks\n 📦\u0000 deal: 82 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 70 events, 8 properties\n 📦\u0000 company: 89 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 34 events, 4 properties\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 174 webhooks\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 22 events, 5 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16","depth":4,"value":"🏢\u0000 Config 908 (JPA Workspaces - 956) - 1223 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 3 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 company: 457 webhooks\n 🔔\u0000 property_change: 447 events, 2 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks\n 📦\u0000 company: 614 webhooks\n 🔔\u0000 property_change: 175 events, 6 properties\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 association_change: 424 events, 0 properties\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n 📦\u0000 deal: 9 webhooks\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 7898 webhooks\n 📦\u0000 deal: 27 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 4 events, 2 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n 📦\u0000 company: 2284 webhooks\n 🔔\u0000 association_change: 1818 events, 0 properties\n 🔔\u0000 property_change: 308 events, 6 properties\n 🔔\u0000 creation: 158 events, 0 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 342 webhooks\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 property_change: 25 events, 6 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 deal: 151 webhooks\n 🔔\u0000 property_change: 82 events, 11 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 871 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n 📦\u0000 company: 299 webhooks\n 🔔\u0000 association_change: 188 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 93 events, 6 properties\n 📦\u0000 deal: 78 webhooks\n 🔔\u0000 property_change: 56 events, 9 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 547 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 3 properties\n 📦\u0000 deal: 42 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 25 events, 5 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 99 webhooks\n 📦\u0000 company: 32 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 463 webhooks\n 📦\u0000 company: 161 webhooks\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 147 webhooks\n 🔔\u0000 property_change: 69 events, 12 properties\n 🔔\u0000 association_change: 74 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 982 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n 📦\u0000 company: 329 webhooks\n 🔔\u0000 property_change: 130 events, 4 properties\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 45 events, 0 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 5 events, 2 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 134 webhooks\n 📦\u0000 company: 34 webhooks\n 🔔\u0000 property_change: 13 events, 5 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 869 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n 📦\u0000 deal: 266 webhooks\n 🔔\u0000 creation: 28 events, 0 properties\n 🔔\u0000 property_change: 153 events, 7 properties\n 🔔\u0000 association_change: 85 events, 0 properties\n 📦\u0000 company: 101 webhooks\n 🔔\u0000 association_change: 86 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 1101 webhooks\n 📦\u0000 deal: 190 webhooks\n 🔔\u0000 association_change: 57 events, 0 properties\n 🔔\u0000 property_change: 117 events, 8 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 📦\u0000 company: 248 webhooks\n 🔔\u0000 association_change: 149 events, 0 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 property_change: 73 events, 5 properties\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 225415 webhooks\n 📦\u0000 company: 35595 webhooks\n 🔔\u0000 property_change: 5687 events, 3 properties\n 🔔\u0000 association_change: 25219 events, 0 properties\n 🔔\u0000 creation: 4689 events, 0 properties\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n 📦\u0000 deal: 113081 webhooks\n 🔔\u0000 creation: 7588 events, 0 properties\n 🔔\u0000 property_change: 82720 events, 9 properties\n 🔔\u0000 association_change: 22773 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 635 webhooks\n 📦\u0000 deal: 228 webhooks\n 🔔\u0000 property_change: 158 events, 9 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 52 events, 0 properties\n 📦\u0000 company: 142 webhooks\n 🔔\u0000 property_change: 59 events, 6 properties\n 🔔\u0000 association_change: 69 events, 0 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 374 webhooks\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 118 webhooks\n 🔔\u0000 property_change: 78 events, 10 properties\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 83 webhooks\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 deal: 17 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 13 events, 6 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 24 webhooks\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 898 webhooks\n 📦\u0000 company: 12 webhooks\n 🔔\u0000 property_change: 5 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 📦\u0000 deal: 480 webhooks\n 🔔\u0000 association_change: 40 events, 0 properties\n 🔔\u0000 creation: 35 events, 0 properties\n 🔔\u0000 property_change: 405 events, 8 properties\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 5388 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n 📦\u0000 company: 1647 webhooks\n 🔔\u0000 association_change: 698 events, 0 properties\n 🔔\u0000 property_change: 637 events, 6 properties\n 🔔\u0000 creation: 312 events, 0 properties\n 📦\u0000 deal: 55 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 1231 webhooks\n 📦\u0000 company: 274 webhooks\n 🔔\u0000 property_change: 128 events, 6 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 120 events, 0 properties\n 📦\u0000 deal: 464 webhooks\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 385 events, 23 properties\n 🔔\u0000 association_change: 63 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 3864 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n 📦\u0000 company: 742 webhooks\n 🔔\u0000 association_change: 617 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 🔔\u0000 property_change: 94 events, 6 properties\n 📦\u0000 deal: 482 webhooks\n 🔔\u0000 association_change: 121 events, 0 properties\n 🔔\u0000 property_change: 338 events, 11 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 8574 webhooks\n 📦\u0000 company: 1694 webhooks\n 🔔\u0000 property_change: 156 events, 6 properties\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 1499 events, 0 properties\n 📦\u0000 deal: 663 webhooks\n 🔔\u0000 property_change: 491 events, 15 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 74 events, 0 properties\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 2108 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n 📦\u0000 deal: 39 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 23 events, 6 properties\n 📦\u0000 company: 330 webhooks\n 🔔\u0000 association_change: 298 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 9399 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n 📦\u0000 company: 957 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 352 events, 0 properties\n 🔔\u0000 property_change: 575 events, 6 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 4387 webhooks\n 📦\u0000 company: 2012 webhooks\n 🔔\u0000 property_change: 1370 events, 6 properties\n 🔔\u0000 creation: 207 events, 0 properties\n 🔔\u0000 association_change: 435 events, 0 properties\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 property_change: 119 events, 5 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 874 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 association_change: 36 events, 0 properties\n 🔔\u0000 property_change: 24 events, 6 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n 📦\u0000 deal: 280 webhooks\n 🔔\u0000 property_change: 225 events, 11 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 🔔\u0000 association_change: 41 events, 0 properties\n 📦\u0000 company: 173 webhooks\n 🔔\u0000 property_change: 34 events, 3 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 130 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 1191 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n 📦\u0000 company: 266 webhooks\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 78 events, 6 properties\n 🔔\u0000 association_change: 167 events, 0 properties\n 📦\u0000 deal: 73 webhooks\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 49 events, 7 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 4021 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n 📦\u0000 deal: 1468 webhooks\n 🔔\u0000 property_change: 1072 events, 10 properties\n 🔔\u0000 creation: 99 events, 0 properties\n 🔔\u0000 association_change: 297 events, 0 properties\n 📦\u0000 company: 924 webhooks\n 🔔\u0000 creation: 151 events, 0 properties\n 🔔\u0000 association_change: 510 events, 0 properties\n 🔔\u0000 property_change: 263 events, 2 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 56 webhooks\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 10 events, 5 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 30 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 18 events, 2 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks\n 📦\u0000 company: 160 webhooks\n 🔔\u0000 property_change: 30 events, 3 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 34 webhooks\n 🔔\u0000 property_change: 34 events, 6 properties\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 243 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 📦\u0000 deal: 68 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 47 events, 9 properties\n 📦\u0000 company: 42 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 12 events, 6 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 39 webhooks\n 📦\u0000 company: 13 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 163 webhooks\n 📦\u0000 company: 41 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 property_change: 11 events, 6 properties\n 📦\u0000 deal: 21 webhooks\n 🔔\u0000 property_change: 17 events, 6 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 580 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 property_change: 204 events, 7 properties\n 🔔\u0000 association_change: 39 events, 0 properties\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 132 webhooks\n 🔔\u0000 property_change: 61 events, 6 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 430 webhooks\n 📦\u0000 company: 102 webhooks\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 66 events, 0 properties\n 🔔\u0000 property_change: 26 events, 6 properties\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n 📦\u0000 deal: 126 webhooks\n 🔔\u0000 property_change: 80 events, 9 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 37 events, 0 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 3300 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 207 events, 10 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 921 webhooks\n 🔔\u0000 property_change: 48 events, 6 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 862 events, 0 properties\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 1138 webhooks\n 📦\u0000 company: 141 webhooks\n 🔔\u0000 property_change: 35 events, 3 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 59 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 property_change: 21 events, 5 properties\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 70 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 16 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 3713 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n 📦\u0000 deal: 1822 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 1278 events, 0 properties\n 🔔\u0000 property_change: 526 events, 7 properties\n 📦\u0000 company: 556 webhooks\n 🔔\u0000 association_change: 451 events, 0 properties\n 🔔\u0000 property_change: 68 events, 3 properties\n 🔔\u0000 creation: 37 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 67 webhooks\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 31 webhooks\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 23 events, 7 properties\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 151 webhooks\n 📦\u0000 company: 35 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 deal: 1 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 4102 webhooks\n 📦\u0000 company: 1117 webhooks\n 🔔\u0000 creation: 92 events, 0 properties\n 🔔\u0000 association_change: 676 events, 0 properties\n 🔔\u0000 property_change: 349 events, 4 properties\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n 📦\u0000 deal: 61 webhooks\n 🔔\u0000 property_change: 49 events, 13 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 97 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 2244 webhooks\n 📦\u0000 company: 297 webhooks\n 🔔\u0000 property_change: 104 events, 3 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n 🔔\u0000 creation: 38 events, 0 properties\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n 📦\u0000 deal: 430 webhooks\n 🔔\u0000 property_change: 285 events, 6 properties\n 🔔\u0000 creation: 40 events, 0 properties\n 🔔\u0000 association_change: 105 events, 0 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 1274 webhooks\n 📦\u0000 deal: 86 webhooks\n 🔔\u0000 property_change: 69 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n 📦\u0000 company: 370 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 163 events, 6 properties\n 🔔\u0000 association_change: 174 events, 0 properties\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 344 webhooks\n 📦\u0000 deal: 82 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 70 events, 8 properties\n 📦\u0000 company: 89 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 34 events, 4 properties\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 174 webhooks\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 22 events, 5 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
3073874247952100123
|
-5421059355094964400
|
idle
|
accessibility
|
NULL
|
🏢 Config 908 (JPA Workspaces - 956) - 1223 webhoo 🏢 Config 908 (JPA Workspaces - 956) - 1223 webhooks
📦 deal: 26 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 14 events, 3 properties
🔔 association_change: 9 events, 0 properties
📦 company: 457 webhooks
🔔 property_change: 447 events, 2 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks
📦 company: 614 webhooks
🔔 property_change: 175 events, 6 properties
🔔 creation: 15 events, 0 properties
🔔 association_change: 424 events, 0 properties
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
📦 deal: 9 webhooks
🔔 property_change: 8 events, 4 properties
🔔 association_change: 1 events, 0 properties
🏢 Config 880 (Immutable - 931) - 7898 webhooks
📦 deal: 27 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 4 events, 2 properties
🔔 association_change: 21 events, 0 properties
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
📦 company: 2284 webhooks
🔔 association_change: 1818 events, 0 properties
🔔 property_change: 308 events, 6 properties
🔔 creation: 158 events, 0 properties
🏢 Config 877 (GroWrk Remote - 927) - 342 webhooks
📦 company: 74 webhooks
🔔 property_change: 25 events, 6 properties
🔔 association_change: 44 events, 0 properties
🔔 creation: 5 events, 0 properties
📦 deal: 151 webhooks
🔔 property_change: 82 events, 11 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 11 events, 0 properties
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 871 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
📦 company: 299 webhooks
🔔 association_change: 188 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 93 events, 6 properties
📦 deal: 78 webhooks
🔔 property_change: 56 events, 9 properties
🔔 creation: 4 events, 0 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 547 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
📦 company: 40 webhooks
🔔 association_change: 30 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 3 properties
📦 deal: 42 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 25 events, 5 properties
🏢 Config 583 (One Core Media - 608) - 99 webhooks
📦 company: 32 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 463 webhooks
📦 company: 161 webhooks
🔔 association_change: 160 events, 0 properties
🔔 property_change: 1 events, 1 properties
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 deal: 147 webhooks
🔔 property_change: 69 events, 12 properties
🔔 association_change: 74 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 982 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
📦 company: 329 webhooks
🔔 property_change: 130 events, 4 properties
🔔 association_change: 154 events, 0 properties
🔔 creation: 45 events, 0 properties
📦 deal: 18 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 5 events, 2 properties
🏢 Config 270 (Heka Happy - 288) - 134 webhooks
📦 company: 34 webhooks
🔔 property_change: 13 events, 5 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 5 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 869 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
📦 deal: 266 webhooks
🔔 creation: 28 events, 0 properties
🔔 property_change: 153 events, 7 properties
🔔 association_change: 85 events, 0 properties
📦 company: 101 webhooks
🔔 association_change: 86 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 creation: 4 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 1101 webhooks
📦 deal: 190 webhooks
🔔 association_change: 57 events, 0 properties
🔔 property_change: 117 events, 8 properties
🔔 creation: 16 events, 0 properties
📦 company: 248 webhooks
🔔 association_change: 149 events, 0 properties
🔔 creation: 26 events, 0 properties
🔔 property_change: 73 events, 5 properties
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 225415 webhooks
📦 company: 35595 webhooks
🔔 property_change: 5687 events, 3 properties
🔔 association_change: 25219 events, 0 properties
🔔 creation: 4689 events, 0 properties
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
📦 deal: 113081 webhooks
🔔 creation: 7588 events, 0 properties
🔔 property_change: 82720 events, 9 properties
🔔 association_change: 22773 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 635 webhooks
📦 deal: 228 webhooks
🔔 property_change: 158 events, 9 properties
🔔 creation: 18 events, 0 properties
🔔 association_change: 52 events, 0 properties
📦 company: 142 webhooks
🔔 property_change: 59 events, 6 properties
🔔 association_change: 69 events, 0 properties
🔔 creation: 14 events, 0 properties
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 374 webhooks
📦 company: 64 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 15 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 118 webhooks
🔔 property_change: 78 events, 10 properties
🔔 association_change: 30 events, 0 properties
🔔 creation: 10 events, 0 properties
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 83 webhooks
📦 company: 11 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
📦 deal: 17 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🔔 property_change: 13 events, 6 properties
🏢 Config 1049 (Classavo - 851) - 24 webhooks
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 1 events, 0 properties
🏢 Config 290 (D1 Training - 308) - 898 webhooks
📦 company: 12 webhooks
🔔 property_change: 5 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 6 events, 0 properties
📦 deal: 480 webhooks
🔔 association_change: 40 events, 0 properties
🔔 creation: 35 events, 0 properties
🔔 property_change: 405 events, 8 properties
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 5388 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
📦 company: 1647 webhooks
🔔 association_change: 698 events, 0 properties
🔔 property_change: 637 events, 6 properties
🔔 creation: 312 events, 0 properties
📦 deal: 55 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 1231 webhooks
📦 company: 274 webhooks
🔔 property_change: 128 events, 6 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 120 events, 0 properties
📦 deal: 464 webhooks
🔔 creation: 16 events, 0 properties
🔔 property_change: 385 events, 23 properties
🔔 association_change: 63 events, 0 properties
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 3864 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
📦 company: 742 webhooks
🔔 association_change: 617 events, 0 properties
🔔 creation: 31 events, 0 properties
🔔 property_change: 94 events, 6 properties
📦 deal: 482 webhooks
🔔 association_change: 121 events, 0 properties
🔔 property_change: 338 events, 11 properties
🔔 creation: 23 events, 0 properties
🏢 Config 1053 (Sensi.AI - 1117) - 8574 webhooks
📦 company: 1694 webhooks
🔔 property_change: 156 events, 6 properties
🔔 creation: 39 events, 0 properties
🔔 association_change: 1499 events, 0 properties
📦 deal: 663 webhooks
🔔 property_change: 491 events, 15 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 74 events, 0 properties
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 2108 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
📦 deal: 39 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 23 events, 6 properties
📦 company: 330 webhooks
🔔 association_change: 298 events, 0 properties
🔔 property_change: 23 events, 5 properties
🔔 creation: 9 events, 0 properties
🏢 Config 518 (Prolific - 544) - 9399 webhooks
📦 deal: 26 webhooks
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
📦 company: 957 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 352 events, 0 properties
🔔 property_change: 575 events, 6 properties
🏢 Config 761 (Ressio Software - 770) - 4387 webhooks
📦 company: 2012 webhooks
🔔 property_change: 1370 events, 6 properties
🔔 creation: 207 events, 0 properties
🔔 association_change: 435 events, 0 properties
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
📦 deal: 255 webhooks
🔔 property_change: 119 events, 5 properties
🔔 creation: 17 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 874 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
📦 company: 64 webhooks
🔔 association_change: 36 events, 0 properties
🔔 property_change: 24 events, 6 properties
🔔 creation: 4 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
📦 deal: 280 webhooks
🔔 property_change: 225 events, 11 properties
🔔 creation: 14 events, 0 properties
🔔 association_change: 41 events, 0 properties
📦 company: 173 webhooks
🔔 property_change: 34 events, 3 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 130 events, 0 properties
🏢 Config 581 (Penfold - 606) - 1191 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
📦 company: 266 webhooks
🔔 creation: 21 events, 0 properties
🔔 property_change: 78 events, 6 properties
🔔 association_change: 167 events, 0 properties
📦 deal: 73 webhooks
🔔 association_change: 18 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 49 events, 7 properties
🏢 Config 1015 (Travefy - 1049) - 4021 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
📦 deal: 1468 webhooks
🔔 property_change: 1072 events, 10 properties
🔔 creation: 99 events, 0 properties
🔔 association_change: 297 events, 0 properties
📦 company: 924 webhooks
🔔 creation: 151 events, 0 properties
🔔 association_change: 510 events, 0 properties
🔔 property_change: 263 events, 2 properties
🏢 Config 413 (VCC - 347) - 56 webhooks
📦 deal: 11 webhooks
🔔 property_change: 10 events, 5 properties
🔔 association_change: 1 events, 0 properties
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 company: 30 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 18 events, 2 properties
🔔 creation: 9 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks
📦 company: 160 webhooks
🔔 property_change: 30 events, 3 properties
🔔 association_change: 122 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 34 webhooks
🔔 property_change: 34 events, 6 properties
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 243 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
📦 deal: 68 webhooks
🔔 creation: 5 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 47 events, 9 properties
📦 company: 42 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 12 events, 6 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 39 webhooks
📦 company: 13 webhooks
🔔 property_change: 5 events, 3 properties
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 163 webhooks
📦 company: 41 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 29 events, 0 properties
🔔 property_change: 11 events, 6 properties
📦 deal: 21 webhooks
🔔 property_change: 17 events, 6 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 580 webhooks
📦 deal: 255 webhooks
🔔 creation: 12 events, 0 properties
🔔 property_change: 204 events, 7 properties
🔔 association_change: 39 events, 0 properties
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
📦 company: 132 webhooks
🔔 property_change: 61 events, 6 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 300 (Prowly - 318) - 430 webhooks
📦 company: 102 webhooks
🔔 creation: 10 events, 0 properties
🔔 association_change: 66 events, 0 properties
🔔 property_change: 26 events, 6 properties
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
📦 deal: 126 webhooks
🔔 property_change: 80 events, 9 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 37 events, 0 properties
🏢 Config 265 (Orbital - 283) - 3300 webhooks
📦 deal: 255 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 207 events, 10 properties
🔔 association_change: 45 events, 0 properties
📦 company: 921 webhooks
🔔 property_change: 48 events, 6 properties
🔔 creation: 11 events, 0 properties
🔔 association_change: 862 events, 0 properties
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 1138 webhooks
📦 company: 141 webhooks
🔔 property_change: 35 events, 3 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 59 webhooks
🔔 creation: 11 events, 0 properties
🔔 association_change: 27 events, 0 properties
🔔 property_change: 21 events, 5 properties
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 70 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
📦 company: 16 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🔔 association_change: 10 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 3713 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
📦 deal: 1822 webhooks
🔔 creation: 18 events, 0 properties
🔔 association_change: 1278 events, 0 properties
🔔 property_change: 526 events, 7 properties
📦 company: 556 webhooks
🔔 association_change: 451 events, 0 properties
🔔 property_change: 68 events, 3 properties
🔔 creation: 37 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 67 webhooks
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 31 webhooks
🔔 association_change: 7 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 23 events, 7 properties
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 151 webhooks
📦 company: 35 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 8 events, 4 properties
🔔 association_change: 22 events, 0 properties
📦 deal: 1 webhooks
🔔 property_change: 1 events, 1 properties
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 4102 webhooks
📦 company: 1117 webhooks
🔔 creation: 92 events, 0 properties
🔔 association_change: 676 events, 0 properties
🔔 property_change: 349 events, 4 properties
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
📦 deal: 61 webhooks
🔔 property_change: 49 events, 13 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 97 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 20 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 3 properties
🔔 association_change: 14 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 2244 webhooks
📦 company: 297 webhooks
🔔 property_change: 104 events, 3 properties
🔔 association_change: 155 events, 0 properties
🔔 creation: 38 events, 0 properties
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
📦 deal: 430 webhooks
🔔 property_change: 285 events, 6 properties
🔔 creation: 40 events, 0 properties
🔔 association_change: 105 events, 0 properties
🏢 Config 339 (Rosterfy - 359) - 1274 webhooks
📦 deal: 86 webhooks
🔔 property_change: 69 events, 8 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 14 events, 0 properties
📦 company: 370 webhooks
🔔 creation: 33 events, 0 properties
🔔 property_change: 163 events, 6 properties
🔔 association_change: 174 events, 0 properties
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 344 webhooks
📦 deal: 82 webhooks
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 70 events, 8 properties
📦 company: 89 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🔔 property_change: 34 events, 4 properties
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 174 webhooks
📦 company: 40 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 22 events, 5 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
69512
|
1598
|
6
|
2026-04-22T08:15:23.482285+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845723482_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🏢 Config 908 (JPA Workspaces - 956) - 1223 webhoo 🏢 Config 908 (JPA Workspaces - 956) - 1223 webhooks
📦 deal: 26 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 14 events, 3 properties
🔔 association_change: 9 events, 0 properties
📦 company: 457 webhooks
🔔 property_change: 447 events, 2 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks
📦 company: 614 webhooks
🔔 property_change: 175 events, 6 properties
🔔 creation: 15 events, 0 properties
🔔 association_change: 424 events, 0 properties
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
📦 deal: 9 webhooks
🔔 property_change: 8 events, 4 properties
🔔 association_change: 1 events, 0 properties
🏢 Config 880 (Immutable - 931) - 7898 webhooks
📦 deal: 27 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 4 events, 2 properties
🔔 association_change: 21 events, 0 properties
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
📦 company: 2284 webhooks
🔔 association_change: 1818 events, 0 properties
🔔 property_change: 308 events, 6 properties
🔔 creation: 158 events, 0 properties
🏢 Config 877 (GroWrk Remote - 927) - 342 webhooks
📦 company: 74 webhooks
🔔 property_change: 25 events, 6 properties
🔔 association_change: 44 events, 0 properties
🔔 creation: 5 events, 0 properties
📦 deal: 151 webhooks
🔔 property_change: 82 events, 11 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 11 events, 0 properties
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 871 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
📦 company: 299 webhooks
🔔 association_change: 188 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 93 events, 6 properties
📦 deal: 78 webhooks
🔔 property_change: 56 events, 9 properties
🔔 creation: 4 events, 0 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 547 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
📦 company: 40 webhooks
🔔 association_change: 30 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 3 properties
📦 deal: 42 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 25 events, 5 properties
🏢 Config 583 (One Core Media - 608) - 99 webhooks
📦 company: 32 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 463 webhooks
📦 company: 161 webhooks
🔔 association_change: 160 events, 0 properties
🔔 property_change: 1 events, 1 properties
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 deal: 147 webhooks
🔔 property_change: 69 events, 12 properties
🔔 association_change: 74 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 982 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
📦 company: 329 webhooks
🔔 property_change: 130 events, 4 properties
🔔 association_change: 154 events, 0 properties
🔔 creation: 45 events, 0 properties
📦 deal: 18 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 5 events, 2 properties
🏢 Config 270 (Heka Happy - 288) - 134 webhooks
📦 company: 34 webhooks
🔔 property_change: 13 events, 5 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 5 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 869 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
📦 deal: 266 webhooks
🔔 creation: 28 events, 0 properties
🔔 property_change: 153 events, 7 properties
🔔 association_change: 85 events, 0 properties
📦 company: 101 webhooks
🔔 association_change: 86 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 creation: 4 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 1101 webhooks
📦 deal: 190 webhooks
🔔 association_change: 57 events, 0 properties
🔔 property_change: 117 events, 8 properties
🔔 creation: 16 events, 0 properties
📦 company: 248 webhooks
🔔 association_change: 149 events, 0 properties
🔔 creation: 26 events, 0 properties
🔔 property_change: 73 events, 5 properties
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 225415 webhooks
📦 company: 35595 webhooks
🔔 property_change: 5687 events, 3 properties
🔔 association_change: 25219 events, 0 properties
🔔 creation: 4689 events, 0 properties
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
📦 deal: 113081 webhooks
🔔 creation: 7588 events, 0 properties
🔔 property_change: 82720 events, 9 properties
🔔 association_change: 22773 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 635 webhooks
📦 deal: 228 webhooks
🔔 property_change: 158 events, 9 properties
🔔 creation: 18 events, 0 properties
🔔 association_change: 52 events, 0 properties
📦 company: 142 webhooks
🔔 property_change: 59 events, 6 properties
🔔 association_change: 69 events, 0 properties
🔔 creation: 14 events, 0 properties
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 374 webhooks
📦 company: 64 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 15 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 118 webhooks
🔔 property_change: 78 events, 10 properties
🔔 association_change: 30 events, 0 properties
🔔 creation: 10 events, 0 properties
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 83 webhooks
📦 company: 11 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
📦 deal: 17 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🔔 property_change: 13 events, 6 properties
🏢 Config 1049 (Classavo - 851) - 24 webhooks
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 1 events, 0 properties
🏢 Config 290 (D1 Training - 308) - 898 webhooks
📦 company: 12 webhooks
🔔 property_change: 5 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 6 events, 0 properties
📦 deal: 480 webhooks
🔔 association_change: 40 events, 0 properties
🔔 creation: 35 events, 0 properties
🔔 property_change: 405 events, 8 properties
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 5388 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
📦 company: 1647 webhooks
🔔 association_change: 698 events, 0 properties
🔔 property_change: 637 events, 6 properties
🔔 creation: 312 events, 0 properties
📦 deal: 55 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 1231 webhooks
📦 company: 274 webhooks
🔔 property_change: 128 events, 6 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 120 events, 0 properties
📦 deal: 464 webhooks
🔔 creation: 16 events, 0 properties
🔔 property_change: 385 events, 23 properties
🔔 association_change: 63 events, 0 properties
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 3864 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
📦 company: 742 webhooks
🔔 association_change: 617 events, 0 properties
🔔 creation: 31 events, 0 properties
🔔 property_change: 94 events, 6 properties
📦 deal: 482 webhooks
🔔 association_change: 121 events, 0 properties
🔔 property_change: 338 events, 11 properties
🔔 creation: 23 events, 0 properties
🏢 Config 1053 (Sensi.AI - 1117) - 8574 webhooks
📦 company: 1694 webhooks
🔔 property_change: 156 events, 6 properties
🔔 creation: 39 events, 0 properties
🔔 association_change: 1499 events, 0 properties
📦 deal: 663 webhooks
🔔 property_change: 491 events, 15 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 74 events, 0 properties
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 2108 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
📦 deal: 39 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 23 events, 6 properties
📦 company: 330 webhooks
🔔 association_change: 298 events, 0 properties
🔔 property_change: 23 events, 5 properties
🔔 creation: 9 events, 0 properties
🏢 Config 518 (Prolific - 544) - 9399 webhooks
📦 deal: 26 webhooks
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
📦 company: 957 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 352 events, 0 properties
🔔 property_change: 575 events, 6 properties
🏢 Config 761 (Ressio Software - 770) - 4387 webhooks
📦 company: 2012 webhooks
🔔 property_change: 1370 events, 6 properties
🔔 creation: 207 events, 0 properties
🔔 association_change: 435 events, 0 properties
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
📦 deal: 255 webhooks
🔔 property_change: 119 events, 5 properties
🔔 creation: 17 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 874 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
📦 company: 64 webhooks
🔔 association_change: 36 events, 0 properties
🔔 property_change: 24 events, 6 properties
🔔 creation: 4 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
📦 deal: 280 webhooks
🔔 property_change: 225 events, 11 properties
🔔 creation: 14 events, 0 properties
🔔 association_change: 41 events, 0 properties
📦 company: 173 webhooks
🔔 property_change: 34 events, 3 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 130 events, 0 properties
🏢 Config 581 (Penfold - 606) - 1191 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
📦 company: 266 webhooks
🔔 creation: 21 events, 0 properties
🔔 property_change: 78 events, 6 properties
🔔 association_change: 167 events, 0 properties
📦 deal: 73 webhooks
🔔 association_change: 18 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 49 events, 7 properties
🏢 Config 1015 (Travefy - 1049) - 4021 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
📦 deal: 1468 webhooks
🔔 property_change: 1072 events, 10 properties
🔔 creation: 99 events, 0 properties
🔔 association_change: 297 events, 0 properties
📦 company: 924 webhooks
🔔 creation: 151 events, 0 properties
🔔 association_change: 510 events, 0 properties
🔔 property_change: 263 events, 2 properties
🏢 Config 413 (VCC - 347) - 56 webhooks
📦 deal: 11 webhooks
🔔 property_change: 10 events, 5 properties
🔔 association_change: 1 events, 0 properties
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 company: 30 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 18 events, 2 properties
🔔 creation: 9 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks
📦 company: 160 webhooks
🔔 property_change: 30 events, 3 properties
🔔 association_change: 122 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 34 webhooks
🔔 property_change: 34 events, 6 properties
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 243 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
📦 deal: 68 webhooks
🔔 creation: 5 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 47 events, 9 properties
📦 company: 42 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 12 events, 6 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 39 webhooks
📦 company: 13 webhooks
🔔 property_change: 5 events, 3 properties
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 163 webhooks
📦 company: 41 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 29 events, 0 properties
🔔 property_change: 11 events, 6 properties
📦 deal: 21 webhooks
🔔 property_change: 17 events, 6 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 580 webhooks
📦 deal: 255 webhooks
🔔 creation: 12 events, 0 properties
🔔 property_change: 204 events, 7 properties
🔔 association_change: 39 events, 0 properties
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
📦 company: 132 webhooks
🔔 property_change: 61 events, 6 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 300 (Prowly - 318) - 430 webhooks
📦 company: 102 webhooks
🔔 creation: 10 events, 0 properties
🔔 association_change: 66 events, 0 properties
🔔 property_change: 26 events, 6 properties
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
📦 deal: 126 webhooks
🔔 property_change: 80 events, 9 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 37 events, 0 properties
🏢 Config 265 (Orbital - 283) - 3300 webhooks
📦 deal: 255 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 207 events, 10 properties
🔔 association_change: 45 events, 0 properties
📦 company: 921 webhooks
🔔 property_change: 48 events, 6 properties
🔔 creation: 11 events, 0 properties
🔔 association_change: 862 events, 0 properties
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 1138 webhooks
📦 company: 141 webhooks
🔔 property_change: 35 events, 3 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 59 webhooks
🔔 creation: 11 events, 0 properties
🔔 association_change: 27 events, 0 properties
🔔 property_change: 21 events, 5 properties
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 70 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
📦 company: 16 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🔔 association_change: 10 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 3713 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
📦 deal: 1822 webhooks
🔔 creation: 18 events, 0 properties
🔔 association_change: 1278 events, 0 properties
🔔 property_change: 526 events, 7 properties
📦 company: 556 webhooks
🔔 association_change: 451 events, 0 properties
🔔 property_change: 68 events, 3 properties
🔔 creation: 37 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 67 webhooks
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 31 webhooks
🔔 association_change: 7 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 23 events, 7 properties
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 151 webhooks
📦 company: 35 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 8 events, 4 properties
🔔 association_change: 22 events, 0 properties
📦 deal: 1 webhooks
🔔 property_change: 1 events, 1 properties
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 4102 webhooks
📦 company: 1117 webhooks
🔔 creation: 92 events, 0 properties
🔔 association_change: 676 events, 0 properties
🔔 property_change: 349 events, 4 properties
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
📦 deal: 61 webhooks
🔔 property_change: 49 events, 13 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 97 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 20 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 3 properties
🔔 association_change: 14 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 2244 webhooks
📦 company: 297 webhooks
🔔 property_change: 104 events, 3 properties
🔔 association_change: 155 events, 0 properties
🔔 creation: 38 events, 0 properties
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
📦 deal: 430 webhooks
🔔 property_change: 285 events, 6 properties
🔔 creation: 40 events, 0 properties
🔔 association_change: 105 events, 0 properties
🏢 Config 339 (Rosterfy - 359) - 1274 webhooks
📦 deal: 86 webhooks
🔔 property_change: 69 events, 8 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 14 events, 0 properties
📦 company: 370 webhooks
🔔 creation: 33 events, 0 properties
🔔 property_change: 163 events, 6 properties
🔔 association_change: 174 events, 0 properties
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 344 webhooks
📦 deal: 82 webhooks
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 70 events, 8 properties
📦 company: 89 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🔔 property_change: 34 events, 4 properties
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 174 webhooks
📦 company: 40 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 22 events, 5 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🏢\u0000 Config 908 (JPA Workspaces - 956) - 1223 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 3 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 company: 457 webhooks\n 🔔\u0000 property_change: 447 events, 2 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks\n 📦\u0000 company: 614 webhooks\n 🔔\u0000 property_change: 175 events, 6 properties\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 association_change: 424 events, 0 properties\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n 📦\u0000 deal: 9 webhooks\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 7898 webhooks\n 📦\u0000 deal: 27 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 4 events, 2 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n 📦\u0000 company: 2284 webhooks\n 🔔\u0000 association_change: 1818 events, 0 properties\n 🔔\u0000 property_change: 308 events, 6 properties\n 🔔\u0000 creation: 158 events, 0 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 342 webhooks\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 property_change: 25 events, 6 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 deal: 151 webhooks\n 🔔\u0000 property_change: 82 events, 11 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 871 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n 📦\u0000 company: 299 webhooks\n 🔔\u0000 association_change: 188 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 93 events, 6 properties\n 📦\u0000 deal: 78 webhooks\n 🔔\u0000 property_change: 56 events, 9 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 547 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 3 properties\n 📦\u0000 deal: 42 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 25 events, 5 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 99 webhooks\n 📦\u0000 company: 32 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 463 webhooks\n 📦\u0000 company: 161 webhooks\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 147 webhooks\n 🔔\u0000 property_change: 69 events, 12 properties\n 🔔\u0000 association_change: 74 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 982 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n 📦\u0000 company: 329 webhooks\n 🔔\u0000 property_change: 130 events, 4 properties\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 45 events, 0 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 5 events, 2 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 134 webhooks\n 📦\u0000 company: 34 webhooks\n 🔔\u0000 property_change: 13 events, 5 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 869 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n 📦\u0000 deal: 266 webhooks\n 🔔\u0000 creation: 28 events, 0 properties\n 🔔\u0000 property_change: 153 events, 7 properties\n 🔔\u0000 association_change: 85 events, 0 properties\n 📦\u0000 company: 101 webhooks\n 🔔\u0000 association_change: 86 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 1101 webhooks\n 📦\u0000 deal: 190 webhooks\n 🔔\u0000 association_change: 57 events, 0 properties\n 🔔\u0000 property_change: 117 events, 8 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 📦\u0000 company: 248 webhooks\n 🔔\u0000 association_change: 149 events, 0 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 property_change: 73 events, 5 properties\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 225415 webhooks\n 📦\u0000 company: 35595 webhooks\n 🔔\u0000 property_change: 5687 events, 3 properties\n 🔔\u0000 association_change: 25219 events, 0 properties\n 🔔\u0000 creation: 4689 events, 0 properties\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n 📦\u0000 deal: 113081 webhooks\n 🔔\u0000 creation: 7588 events, 0 properties\n 🔔\u0000 property_change: 82720 events, 9 properties\n 🔔\u0000 association_change: 22773 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 635 webhooks\n 📦\u0000 deal: 228 webhooks\n 🔔\u0000 property_change: 158 events, 9 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 52 events, 0 properties\n 📦\u0000 company: 142 webhooks\n 🔔\u0000 property_change: 59 events, 6 properties\n 🔔\u0000 association_change: 69 events, 0 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 374 webhooks\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 118 webhooks\n 🔔\u0000 property_change: 78 events, 10 properties\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 83 webhooks\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 deal: 17 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 13 events, 6 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 24 webhooks\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 898 webhooks\n 📦\u0000 company: 12 webhooks\n 🔔\u0000 property_change: 5 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 📦\u0000 deal: 480 webhooks\n 🔔\u0000 association_change: 40 events, 0 properties\n 🔔\u0000 creation: 35 events, 0 properties\n 🔔\u0000 property_change: 405 events, 8 properties\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 5388 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n 📦\u0000 company: 1647 webhooks\n 🔔\u0000 association_change: 698 events, 0 properties\n 🔔\u0000 property_change: 637 events, 6 properties\n 🔔\u0000 creation: 312 events, 0 properties\n 📦\u0000 deal: 55 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 1231 webhooks\n 📦\u0000 company: 274 webhooks\n 🔔\u0000 property_change: 128 events, 6 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 120 events, 0 properties\n 📦\u0000 deal: 464 webhooks\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 385 events, 23 properties\n 🔔\u0000 association_change: 63 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 3864 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n 📦\u0000 company: 742 webhooks\n 🔔\u0000 association_change: 617 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 🔔\u0000 property_change: 94 events, 6 properties\n 📦\u0000 deal: 482 webhooks\n 🔔\u0000 association_change: 121 events, 0 properties\n 🔔\u0000 property_change: 338 events, 11 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 8574 webhooks\n 📦\u0000 company: 1694 webhooks\n 🔔\u0000 property_change: 156 events, 6 properties\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 1499 events, 0 properties\n 📦\u0000 deal: 663 webhooks\n 🔔\u0000 property_change: 491 events, 15 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 74 events, 0 properties\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 2108 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n 📦\u0000 deal: 39 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 23 events, 6 properties\n 📦\u0000 company: 330 webhooks\n 🔔\u0000 association_change: 298 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 9399 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n 📦\u0000 company: 957 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 352 events, 0 properties\n 🔔\u0000 property_change: 575 events, 6 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 4387 webhooks\n 📦\u0000 company: 2012 webhooks\n 🔔\u0000 property_change: 1370 events, 6 properties\n 🔔\u0000 creation: 207 events, 0 properties\n 🔔\u0000 association_change: 435 events, 0 properties\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 property_change: 119 events, 5 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 874 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 association_change: 36 events, 0 properties\n 🔔\u0000 property_change: 24 events, 6 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n 📦\u0000 deal: 280 webhooks\n 🔔\u0000 property_change: 225 events, 11 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 🔔\u0000 association_change: 41 events, 0 properties\n 📦\u0000 company: 173 webhooks\n 🔔\u0000 property_change: 34 events, 3 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 130 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 1191 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n 📦\u0000 company: 266 webhooks\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 78 events, 6 properties\n 🔔\u0000 association_change: 167 events, 0 properties\n 📦\u0000 deal: 73 webhooks\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 49 events, 7 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 4021 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n 📦\u0000 deal: 1468 webhooks\n 🔔\u0000 property_change: 1072 events, 10 properties\n 🔔\u0000 creation: 99 events, 0 properties\n 🔔\u0000 association_change: 297 events, 0 properties\n 📦\u0000 company: 924 webhooks\n 🔔\u0000 creation: 151 events, 0 properties\n 🔔\u0000 association_change: 510 events, 0 properties\n 🔔\u0000 property_change: 263 events, 2 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 56 webhooks\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 10 events, 5 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 30 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 18 events, 2 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks\n 📦\u0000 company: 160 webhooks\n 🔔\u0000 property_change: 30 events, 3 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 34 webhooks\n 🔔\u0000 property_change: 34 events, 6 properties\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 243 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 📦\u0000 deal: 68 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 47 events, 9 properties\n 📦\u0000 company: 42 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 12 events, 6 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 39 webhooks\n 📦\u0000 company: 13 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 163 webhooks\n 📦\u0000 company: 41 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 property_change: 11 events, 6 properties\n 📦\u0000 deal: 21 webhooks\n 🔔\u0000 property_change: 17 events, 6 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 580 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 property_change: 204 events, 7 properties\n 🔔\u0000 association_change: 39 events, 0 properties\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 132 webhooks\n 🔔\u0000 property_change: 61 events, 6 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 430 webhooks\n 📦\u0000 company: 102 webhooks\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 66 events, 0 properties\n 🔔\u0000 property_change: 26 events, 6 properties\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n 📦\u0000 deal: 126 webhooks\n 🔔\u0000 property_change: 80 events, 9 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 37 events, 0 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 3300 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 207 events, 10 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 921 webhooks\n 🔔\u0000 property_change: 48 events, 6 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 862 events, 0 properties\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 1138 webhooks\n 📦\u0000 company: 141 webhooks\n 🔔\u0000 property_change: 35 events, 3 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 59 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 property_change: 21 events, 5 properties\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 70 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 16 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 3713 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n 📦\u0000 deal: 1822 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 1278 events, 0 properties\n 🔔\u0000 property_change: 526 events, 7 properties\n 📦\u0000 company: 556 webhooks\n 🔔\u0000 association_change: 451 events, 0 properties\n 🔔\u0000 property_change: 68 events, 3 properties\n 🔔\u0000 creation: 37 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 67 webhooks\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 31 webhooks\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 23 events, 7 properties\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 151 webhooks\n 📦\u0000 company: 35 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 deal: 1 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 4102 webhooks\n 📦\u0000 company: 1117 webhooks\n 🔔\u0000 creation: 92 events, 0 properties\n 🔔\u0000 association_change: 676 events, 0 properties\n 🔔\u0000 property_change: 349 events, 4 properties\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n 📦\u0000 deal: 61 webhooks\n 🔔\u0000 property_change: 49 events, 13 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 97 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 2244 webhooks\n 📦\u0000 company: 297 webhooks\n 🔔\u0000 property_change: 104 events, 3 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n 🔔\u0000 creation: 38 events, 0 properties\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n 📦\u0000 deal: 430 webhooks\n 🔔\u0000 property_change: 285 events, 6 properties\n 🔔\u0000 creation: 40 events, 0 properties\n 🔔\u0000 association_change: 105 events, 0 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 1274 webhooks\n 📦\u0000 deal: 86 webhooks\n 🔔\u0000 property_change: 69 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n 📦\u0000 company: 370 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 163 events, 6 properties\n 🔔\u0000 association_change: 174 events, 0 properties\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 344 webhooks\n 📦\u0000 deal: 82 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 70 events, 8 properties\n 📦\u0000 company: 89 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 34 events, 4 properties\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 174 webhooks\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 22 events, 5 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16","depth":4,"value":"🏢\u0000 Config 908 (JPA Workspaces - 956) - 1223 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 3 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 company: 457 webhooks\n 🔔\u0000 property_change: 447 events, 2 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks\n 📦\u0000 company: 614 webhooks\n 🔔\u0000 property_change: 175 events, 6 properties\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 association_change: 424 events, 0 properties\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n 📦\u0000 deal: 9 webhooks\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 7898 webhooks\n 📦\u0000 deal: 27 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 4 events, 2 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n 📦\u0000 company: 2284 webhooks\n 🔔\u0000 association_change: 1818 events, 0 properties\n 🔔\u0000 property_change: 308 events, 6 properties\n 🔔\u0000 creation: 158 events, 0 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 342 webhooks\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 property_change: 25 events, 6 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 deal: 151 webhooks\n 🔔\u0000 property_change: 82 events, 11 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 871 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n 📦\u0000 company: 299 webhooks\n 🔔\u0000 association_change: 188 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 93 events, 6 properties\n 📦\u0000 deal: 78 webhooks\n 🔔\u0000 property_change: 56 events, 9 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 547 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 3 properties\n 📦\u0000 deal: 42 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 25 events, 5 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 99 webhooks\n 📦\u0000 company: 32 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 463 webhooks\n 📦\u0000 company: 161 webhooks\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 147 webhooks\n 🔔\u0000 property_change: 69 events, 12 properties\n 🔔\u0000 association_change: 74 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 982 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n 📦\u0000 company: 329 webhooks\n 🔔\u0000 property_change: 130 events, 4 properties\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 45 events, 0 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 5 events, 2 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 134 webhooks\n 📦\u0000 company: 34 webhooks\n 🔔\u0000 property_change: 13 events, 5 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 869 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n 📦\u0000 deal: 266 webhooks\n 🔔\u0000 creation: 28 events, 0 properties\n 🔔\u0000 property_change: 153 events, 7 properties\n 🔔\u0000 association_change: 85 events, 0 properties\n 📦\u0000 company: 101 webhooks\n 🔔\u0000 association_change: 86 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 1101 webhooks\n 📦\u0000 deal: 190 webhooks\n 🔔\u0000 association_change: 57 events, 0 properties\n 🔔\u0000 property_change: 117 events, 8 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 📦\u0000 company: 248 webhooks\n 🔔\u0000 association_change: 149 events, 0 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 property_change: 73 events, 5 properties\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 225415 webhooks\n 📦\u0000 company: 35595 webhooks\n 🔔\u0000 property_change: 5687 events, 3 properties\n 🔔\u0000 association_change: 25219 events, 0 properties\n 🔔\u0000 creation: 4689 events, 0 properties\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n 📦\u0000 deal: 113081 webhooks\n 🔔\u0000 creation: 7588 events, 0 properties\n 🔔\u0000 property_change: 82720 events, 9 properties\n 🔔\u0000 association_change: 22773 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 635 webhooks\n 📦\u0000 deal: 228 webhooks\n 🔔\u0000 property_change: 158 events, 9 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 52 events, 0 properties\n 📦\u0000 company: 142 webhooks\n 🔔\u0000 property_change: 59 events, 6 properties\n 🔔\u0000 association_change: 69 events, 0 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 374 webhooks\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 118 webhooks\n 🔔\u0000 property_change: 78 events, 10 properties\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 83 webhooks\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 deal: 17 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 13 events, 6 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 24 webhooks\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 898 webhooks\n 📦\u0000 company: 12 webhooks\n 🔔\u0000 property_change: 5 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 📦\u0000 deal: 480 webhooks\n 🔔\u0000 association_change: 40 events, 0 properties\n 🔔\u0000 creation: 35 events, 0 properties\n 🔔\u0000 property_change: 405 events, 8 properties\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 5388 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n 📦\u0000 company: 1647 webhooks\n 🔔\u0000 association_change: 698 events, 0 properties\n 🔔\u0000 property_change: 637 events, 6 properties\n 🔔\u0000 creation: 312 events, 0 properties\n 📦\u0000 deal: 55 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 1231 webhooks\n 📦\u0000 company: 274 webhooks\n 🔔\u0000 property_change: 128 events, 6 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 120 events, 0 properties\n 📦\u0000 deal: 464 webhooks\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 385 events, 23 properties\n 🔔\u0000 association_change: 63 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 3864 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n 📦\u0000 company: 742 webhooks\n 🔔\u0000 association_change: 617 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 🔔\u0000 property_change: 94 events, 6 properties\n 📦\u0000 deal: 482 webhooks\n 🔔\u0000 association_change: 121 events, 0 properties\n 🔔\u0000 property_change: 338 events, 11 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 8574 webhooks\n 📦\u0000 company: 1694 webhooks\n 🔔\u0000 property_change: 156 events, 6 properties\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 1499 events, 0 properties\n 📦\u0000 deal: 663 webhooks\n 🔔\u0000 property_change: 491 events, 15 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 74 events, 0 properties\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 2108 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n 📦\u0000 deal: 39 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 23 events, 6 properties\n 📦\u0000 company: 330 webhooks\n 🔔\u0000 association_change: 298 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 9399 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n 📦\u0000 company: 957 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 352 events, 0 properties\n 🔔\u0000 property_change: 575 events, 6 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 4387 webhooks\n 📦\u0000 company: 2012 webhooks\n 🔔\u0000 property_change: 1370 events, 6 properties\n 🔔\u0000 creation: 207 events, 0 properties\n 🔔\u0000 association_change: 435 events, 0 properties\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 property_change: 119 events, 5 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 874 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 association_change: 36 events, 0 properties\n 🔔\u0000 property_change: 24 events, 6 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n 📦\u0000 deal: 280 webhooks\n 🔔\u0000 property_change: 225 events, 11 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 🔔\u0000 association_change: 41 events, 0 properties\n 📦\u0000 company: 173 webhooks\n 🔔\u0000 property_change: 34 events, 3 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 130 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 1191 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n 📦\u0000 company: 266 webhooks\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 78 events, 6 properties\n 🔔\u0000 association_change: 167 events, 0 properties\n 📦\u0000 deal: 73 webhooks\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 49 events, 7 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 4021 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n 📦\u0000 deal: 1468 webhooks\n 🔔\u0000 property_change: 1072 events, 10 properties\n 🔔\u0000 creation: 99 events, 0 properties\n 🔔\u0000 association_change: 297 events, 0 properties\n 📦\u0000 company: 924 webhooks\n 🔔\u0000 creation: 151 events, 0 properties\n 🔔\u0000 association_change: 510 events, 0 properties\n 🔔\u0000 property_change: 263 events, 2 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 56 webhooks\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 10 events, 5 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 30 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 18 events, 2 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks\n 📦\u0000 company: 160 webhooks\n 🔔\u0000 property_change: 30 events, 3 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 34 webhooks\n 🔔\u0000 property_change: 34 events, 6 properties\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 243 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 📦\u0000 deal: 68 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 47 events, 9 properties\n 📦\u0000 company: 42 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 12 events, 6 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 39 webhooks\n 📦\u0000 company: 13 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 163 webhooks\n 📦\u0000 company: 41 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 property_change: 11 events, 6 properties\n 📦\u0000 deal: 21 webhooks\n 🔔\u0000 property_change: 17 events, 6 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 580 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 property_change: 204 events, 7 properties\n 🔔\u0000 association_change: 39 events, 0 properties\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 132 webhooks\n 🔔\u0000 property_change: 61 events, 6 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 430 webhooks\n 📦\u0000 company: 102 webhooks\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 66 events, 0 properties\n 🔔\u0000 property_change: 26 events, 6 properties\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n 📦\u0000 deal: 126 webhooks\n 🔔\u0000 property_change: 80 events, 9 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 37 events, 0 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 3300 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 207 events, 10 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 921 webhooks\n 🔔\u0000 property_change: 48 events, 6 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 862 events, 0 properties\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 1138 webhooks\n 📦\u0000 company: 141 webhooks\n 🔔\u0000 property_change: 35 events, 3 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 59 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 property_change: 21 events, 5 properties\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 70 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 16 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 3713 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n 📦\u0000 deal: 1822 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 1278 events, 0 properties\n 🔔\u0000 property_change: 526 events, 7 properties\n 📦\u0000 company: 556 webhooks\n 🔔\u0000 association_change: 451 events, 0 properties\n 🔔\u0000 property_change: 68 events, 3 properties\n 🔔\u0000 creation: 37 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 67 webhooks\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 31 webhooks\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 23 events, 7 properties\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 151 webhooks\n 📦\u0000 company: 35 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 deal: 1 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 4102 webhooks\n 📦\u0000 company: 1117 webhooks\n 🔔\u0000 creation: 92 events, 0 properties\n 🔔\u0000 association_change: 676 events, 0 properties\n 🔔\u0000 property_change: 349 events, 4 properties\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n 📦\u0000 deal: 61 webhooks\n 🔔\u0000 property_change: 49 events, 13 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 97 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 2244 webhooks\n 📦\u0000 company: 297 webhooks\n 🔔\u0000 property_change: 104 events, 3 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n 🔔\u0000 creation: 38 events, 0 properties\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n 📦\u0000 deal: 430 webhooks\n 🔔\u0000 property_change: 285 events, 6 properties\n 🔔\u0000 creation: 40 events, 0 properties\n 🔔\u0000 association_change: 105 events, 0 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 1274 webhooks\n 📦\u0000 deal: 86 webhooks\n 🔔\u0000 property_change: 69 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n 📦\u0000 company: 370 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 163 events, 6 properties\n 🔔\u0000 association_change: 174 events, 0 properties\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 344 webhooks\n 📦\u0000 deal: 82 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 70 events, 8 properties\n 📦\u0000 company: 89 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 34 events, 4 properties\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 174 webhooks\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 22 events, 5 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
3073874247952100123
|
-5421059355094964400
|
idle
|
accessibility
|
NULL
|
🏢 Config 908 (JPA Workspaces - 956) - 1223 webhoo 🏢 Config 908 (JPA Workspaces - 956) - 1223 webhooks
📦 deal: 26 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 14 events, 3 properties
🔔 association_change: 9 events, 0 properties
📦 company: 457 webhooks
🔔 property_change: 447 events, 2 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks
📦 company: 614 webhooks
🔔 property_change: 175 events, 6 properties
🔔 creation: 15 events, 0 properties
🔔 association_change: 424 events, 0 properties
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
📦 deal: 9 webhooks
🔔 property_change: 8 events, 4 properties
🔔 association_change: 1 events, 0 properties
🏢 Config 880 (Immutable - 931) - 7898 webhooks
📦 deal: 27 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 4 events, 2 properties
🔔 association_change: 21 events, 0 properties
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
📦 company: 2284 webhooks
🔔 association_change: 1818 events, 0 properties
🔔 property_change: 308 events, 6 properties
🔔 creation: 158 events, 0 properties
🏢 Config 877 (GroWrk Remote - 927) - 342 webhooks
📦 company: 74 webhooks
🔔 property_change: 25 events, 6 properties
🔔 association_change: 44 events, 0 properties
🔔 creation: 5 events, 0 properties
📦 deal: 151 webhooks
🔔 property_change: 82 events, 11 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 11 events, 0 properties
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 871 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
📦 company: 299 webhooks
🔔 association_change: 188 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 93 events, 6 properties
📦 deal: 78 webhooks
🔔 property_change: 56 events, 9 properties
🔔 creation: 4 events, 0 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 547 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
📦 company: 40 webhooks
🔔 association_change: 30 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 3 properties
📦 deal: 42 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 25 events, 5 properties
🏢 Config 583 (One Core Media - 608) - 99 webhooks
📦 company: 32 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 463 webhooks
📦 company: 161 webhooks
🔔 association_change: 160 events, 0 properties
🔔 property_change: 1 events, 1 properties
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 deal: 147 webhooks
🔔 property_change: 69 events, 12 properties
🔔 association_change: 74 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 982 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
📦 company: 329 webhooks
🔔 property_change: 130 events, 4 properties
🔔 association_change: 154 events, 0 properties
🔔 creation: 45 events, 0 properties
📦 deal: 18 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 5 events, 2 properties
🏢 Config 270 (Heka Happy - 288) - 134 webhooks
📦 company: 34 webhooks
🔔 property_change: 13 events, 5 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 5 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 869 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
📦 deal: 266 webhooks
🔔 creation: 28 events, 0 properties
🔔 property_change: 153 events, 7 properties
🔔 association_change: 85 events, 0 properties
📦 company: 101 webhooks
🔔 association_change: 86 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 creation: 4 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 1101 webhooks
📦 deal: 190 webhooks
🔔 association_change: 57 events, 0 properties
🔔 property_change: 117 events, 8 properties
🔔 creation: 16 events, 0 properties
📦 company: 248 webhooks
🔔 association_change: 149 events, 0 properties
🔔 creation: 26 events, 0 properties
🔔 property_change: 73 events, 5 properties
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 225415 webhooks
📦 company: 35595 webhooks
🔔 property_change: 5687 events, 3 properties
🔔 association_change: 25219 events, 0 properties
🔔 creation: 4689 events, 0 properties
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
📦 deal: 113081 webhooks
🔔 creation: 7588 events, 0 properties
🔔 property_change: 82720 events, 9 properties
🔔 association_change: 22773 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 635 webhooks
📦 deal: 228 webhooks
🔔 property_change: 158 events, 9 properties
🔔 creation: 18 events, 0 properties
🔔 association_change: 52 events, 0 properties
📦 company: 142 webhooks
🔔 property_change: 59 events, 6 properties
🔔 association_change: 69 events, 0 properties
🔔 creation: 14 events, 0 properties
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 374 webhooks
📦 company: 64 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 15 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 118 webhooks
🔔 property_change: 78 events, 10 properties
🔔 association_change: 30 events, 0 properties
🔔 creation: 10 events, 0 properties
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 83 webhooks
📦 company: 11 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
📦 deal: 17 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🔔 property_change: 13 events, 6 properties
🏢 Config 1049 (Classavo - 851) - 24 webhooks
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 1 events, 0 properties
🏢 Config 290 (D1 Training - 308) - 898 webhooks
📦 company: 12 webhooks
🔔 property_change: 5 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 6 events, 0 properties
📦 deal: 480 webhooks
🔔 association_change: 40 events, 0 properties
🔔 creation: 35 events, 0 properties
🔔 property_change: 405 events, 8 properties
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 5388 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
📦 company: 1647 webhooks
🔔 association_change: 698 events, 0 properties
🔔 property_change: 637 events, 6 properties
🔔 creation: 312 events, 0 properties
📦 deal: 55 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 1231 webhooks
📦 company: 274 webhooks
🔔 property_change: 128 events, 6 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 120 events, 0 properties
📦 deal: 464 webhooks
🔔 creation: 16 events, 0 properties
🔔 property_change: 385 events, 23 properties
🔔 association_change: 63 events, 0 properties
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 3864 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
📦 company: 742 webhooks
🔔 association_change: 617 events, 0 properties
🔔 creation: 31 events, 0 properties
🔔 property_change: 94 events, 6 properties
📦 deal: 482 webhooks
🔔 association_change: 121 events, 0 properties
🔔 property_change: 338 events, 11 properties
🔔 creation: 23 events, 0 properties
🏢 Config 1053 (Sensi.AI - 1117) - 8574 webhooks
📦 company: 1694 webhooks
🔔 property_change: 156 events, 6 properties
🔔 creation: 39 events, 0 properties
🔔 association_change: 1499 events, 0 properties
📦 deal: 663 webhooks
🔔 property_change: 491 events, 15 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 74 events, 0 properties
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 2108 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
📦 deal: 39 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 23 events, 6 properties
📦 company: 330 webhooks
🔔 association_change: 298 events, 0 properties
🔔 property_change: 23 events, 5 properties
🔔 creation: 9 events, 0 properties
🏢 Config 518 (Prolific - 544) - 9399 webhooks
📦 deal: 26 webhooks
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
📦 company: 957 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 352 events, 0 properties
🔔 property_change: 575 events, 6 properties
🏢 Config 761 (Ressio Software - 770) - 4387 webhooks
📦 company: 2012 webhooks
🔔 property_change: 1370 events, 6 properties
🔔 creation: 207 events, 0 properties
🔔 association_change: 435 events, 0 properties
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
📦 deal: 255 webhooks
🔔 property_change: 119 events, 5 properties
🔔 creation: 17 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 874 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
📦 company: 64 webhooks
🔔 association_change: 36 events, 0 properties
🔔 property_change: 24 events, 6 properties
🔔 creation: 4 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
📦 deal: 280 webhooks
🔔 property_change: 225 events, 11 properties
🔔 creation: 14 events, 0 properties
🔔 association_change: 41 events, 0 properties
📦 company: 173 webhooks
🔔 property_change: 34 events, 3 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 130 events, 0 properties
🏢 Config 581 (Penfold - 606) - 1191 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
📦 company: 266 webhooks
🔔 creation: 21 events, 0 properties
🔔 property_change: 78 events, 6 properties
🔔 association_change: 167 events, 0 properties
📦 deal: 73 webhooks
🔔 association_change: 18 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 49 events, 7 properties
🏢 Config 1015 (Travefy - 1049) - 4021 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
📦 deal: 1468 webhooks
🔔 property_change: 1072 events, 10 properties
🔔 creation: 99 events, 0 properties
🔔 association_change: 297 events, 0 properties
📦 company: 924 webhooks
🔔 creation: 151 events, 0 properties
🔔 association_change: 510 events, 0 properties
🔔 property_change: 263 events, 2 properties
🏢 Config 413 (VCC - 347) - 56 webhooks
📦 deal: 11 webhooks
🔔 property_change: 10 events, 5 properties
🔔 association_change: 1 events, 0 properties
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 company: 30 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 18 events, 2 properties
🔔 creation: 9 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks
📦 company: 160 webhooks
🔔 property_change: 30 events, 3 properties
🔔 association_change: 122 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 34 webhooks
🔔 property_change: 34 events, 6 properties
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 243 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
📦 deal: 68 webhooks
🔔 creation: 5 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 47 events, 9 properties
📦 company: 42 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 12 events, 6 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 39 webhooks
📦 company: 13 webhooks
🔔 property_change: 5 events, 3 properties
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 163 webhooks
📦 company: 41 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 29 events, 0 properties
🔔 property_change: 11 events, 6 properties
📦 deal: 21 webhooks
🔔 property_change: 17 events, 6 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 580 webhooks
📦 deal: 255 webhooks
🔔 creation: 12 events, 0 properties
🔔 property_change: 204 events, 7 properties
🔔 association_change: 39 events, 0 properties
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
📦 company: 132 webhooks
🔔 property_change: 61 events, 6 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 300 (Prowly - 318) - 430 webhooks
📦 company: 102 webhooks
🔔 creation: 10 events, 0 properties
🔔 association_change: 66 events, 0 properties
🔔 property_change: 26 events, 6 properties
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
📦 deal: 126 webhooks
🔔 property_change: 80 events, 9 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 37 events, 0 properties
🏢 Config 265 (Orbital - 283) - 3300 webhooks
📦 deal: 255 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 207 events, 10 properties
🔔 association_change: 45 events, 0 properties
📦 company: 921 webhooks
🔔 property_change: 48 events, 6 properties
🔔 creation: 11 events, 0 properties
🔔 association_change: 862 events, 0 properties
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 1138 webhooks
📦 company: 141 webhooks
🔔 property_change: 35 events, 3 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 59 webhooks
🔔 creation: 11 events, 0 properties
🔔 association_change: 27 events, 0 properties
🔔 property_change: 21 events, 5 properties
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 70 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
📦 company: 16 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🔔 association_change: 10 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 3713 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
📦 deal: 1822 webhooks
🔔 creation: 18 events, 0 properties
🔔 association_change: 1278 events, 0 properties
🔔 property_change: 526 events, 7 properties
📦 company: 556 webhooks
🔔 association_change: 451 events, 0 properties
🔔 property_change: 68 events, 3 properties
🔔 creation: 37 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 67 webhooks
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 31 webhooks
🔔 association_change: 7 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 23 events, 7 properties
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 151 webhooks
📦 company: 35 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 8 events, 4 properties
🔔 association_change: 22 events, 0 properties
📦 deal: 1 webhooks
🔔 property_change: 1 events, 1 properties
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 4102 webhooks
📦 company: 1117 webhooks
🔔 creation: 92 events, 0 properties
🔔 association_change: 676 events, 0 properties
🔔 property_change: 349 events, 4 properties
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
📦 deal: 61 webhooks
🔔 property_change: 49 events, 13 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 97 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 20 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 3 properties
🔔 association_change: 14 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 2244 webhooks
📦 company: 297 webhooks
🔔 property_change: 104 events, 3 properties
🔔 association_change: 155 events, 0 properties
🔔 creation: 38 events, 0 properties
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
📦 deal: 430 webhooks
🔔 property_change: 285 events, 6 properties
🔔 creation: 40 events, 0 properties
🔔 association_change: 105 events, 0 properties
🏢 Config 339 (Rosterfy - 359) - 1274 webhooks
📦 deal: 86 webhooks
🔔 property_change: 69 events, 8 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 14 events, 0 properties
📦 company: 370 webhooks
🔔 creation: 33 events, 0 properties
🔔 property_change: 163 events, 6 properties
🔔 association_change: 174 events, 0 properties
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 344 webhooks
📦 deal: 82 webhooks
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 70 events, 8 properties
📦 company: 89 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🔔 property_change: 34 events, 4 properties
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 174 webhooks
📦 company: 40 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 22 events, 5 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook metrics -O contact --date 2026-04-16
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
69510
|
|
69509
|
1599
|
10
|
2026-04-22T08:14:51.406323+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845691406_m2.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
🏢 Config 908 (JPA Workspaces - 956) - 1223 webhoo 🏢 Config 908 (JPA Workspaces - 956) - 1223 webhooks
📦 deal: 26 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 14 events, 3 properties
🔔 association_change: 9 events, 0 properties
📦 company: 457 webhooks
🔔 property_change: 447 events, 2 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks
📦 company: 614 webhooks
🔔 property_change: 175 events, 6 properties
🔔 creation: 15 events, 0 properties
🔔 association_change: 424 events, 0 properties
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
📦 deal: 9 webhooks
🔔 property_change: 8 events, 4 properties
🔔 association_change: 1 events, 0 properties
🏢 Config 880 (Immutable - 931) - 7898 webhooks
📦 deal: 27 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 4 events, 2 properties
🔔 association_change: 21 events, 0 properties
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
📦 company: 2284 webhooks
🔔 association_change: 1818 events, 0 properties
🔔 property_change: 308 events, 6 properties
🔔 creation: 158 events, 0 properties
🏢 Config 877 (GroWrk Remote - 927) - 342 webhooks
📦 company: 74 webhooks
🔔 property_change: 25 events, 6 properties
🔔 association_change: 44 events, 0 properties
🔔 creation: 5 events, 0 properties
📦 deal: 151 webhooks
🔔 property_change: 82 events, 11 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 11 events, 0 properties
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 871 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
📦 company: 299 webhooks
🔔 association_change: 188 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 93 events, 6 properties
📦 deal: 78 webhooks
🔔 property_change: 56 events, 9 properties
🔔 creation: 4 events, 0 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 547 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
📦 company: 40 webhooks
🔔 association_change: 30 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 3 properties
📦 deal: 42 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 25 events, 5 properties
🏢 Config 583 (One Core Media - 608) - 99 webhooks
📦 company: 32 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 463 webhooks
📦 company: 161 webhooks
🔔 association_change: 160 events, 0 properties
🔔 property_change: 1 events, 1 properties
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 deal: 147 webhooks
🔔 property_change: 69 events, 12 properties
🔔 association_change: 74 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 982 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
📦 company: 329 webhooks
🔔 property_change: 130 events, 4 properties
🔔 association_change: 154 events, 0 properties
🔔 creation: 45 events, 0 properties
📦 deal: 18 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 5 events, 2 properties
🏢 Config 270 (Heka Happy - 288) - 134 webhooks
📦 company: 34 webhooks
🔔 property_change: 13 events, 5 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 5 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 869 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
📦 deal: 266 webhooks
🔔 creation: 28 events, 0 properties
🔔 property_change: 153 events, 7 properties
🔔 association_change: 85 events, 0 properties
📦 company: 101 webhooks
🔔 association_change: 86 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 creation: 4 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 1101 webhooks
📦 deal: 190 webhooks
🔔 association_change: 57 events, 0 properties
🔔 property_change: 117 events, 8 properties
🔔 creation: 16 events, 0 properties
📦 company: 248 webhooks
🔔 association_change: 149 events, 0 properties
🔔 creation: 26 events, 0 properties
🔔 property_change: 73 events, 5 properties
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 225415 webhooks
📦 company: 35595 webhooks
🔔 property_change: 5687 events, 3 properties
🔔 association_change: 25219 events, 0 properties
🔔 creation: 4689 events, 0 properties
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
📦 deal: 113081 webhooks
🔔 creation: 7588 events, 0 properties
🔔 property_change: 82720 events, 9 properties
🔔 association_change: 22773 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 635 webhooks
📦 deal: 228 webhooks
🔔 property_change: 158 events, 9 properties
🔔 creation: 18 events, 0 properties
🔔 association_change: 52 events, 0 properties
📦 company: 142 webhooks
🔔 property_change: 59 events, 6 properties
🔔 association_change: 69 events, 0 properties
🔔 creation: 14 events, 0 properties
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 374 webhooks
📦 company: 64 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 15 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 118 webhooks
🔔 property_change: 78 events, 10 properties
🔔 association_change: 30 events, 0 properties
🔔 creation: 10 events, 0 properties
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 83 webhooks
📦 company: 11 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
📦 deal: 17 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🔔 property_change: 13 events, 6 properties
🏢 Config 1049 (Classavo - 851) - 24 webhooks
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 1 events, 0 properties
🏢 Config 290 (D1 Training - 308) - 898 webhooks
📦 company: 12 webhooks
🔔 property_change: 5 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 6 events, 0 properties
📦 deal: 480 webhooks
🔔 association_change: 40 events, 0 properties
🔔 creation: 35 events, 0 properties
🔔 property_change: 405 events, 8 properties
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 5388 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
📦 company: 1647 webhooks
🔔 association_change: 698 events, 0 properties
🔔 property_change: 637 events, 6 properties
🔔 creation: 312 events, 0 properties
📦 deal: 55 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 1231 webhooks
📦 company: 274 webhooks
🔔 property_change: 128 events, 6 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 120 events, 0 properties
📦 deal: 464 webhooks
🔔 creation: 16 events, 0 properties
🔔 property_change: 385 events, 23 properties
🔔 association_change: 63 events, 0 properties
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 3864 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
📦 company: 742 webhooks
🔔 association_change: 617 events, 0 properties
🔔 creation: 31 events, 0 properties
🔔 property_change: 94 events, 6 properties
📦 deal: 482 webhooks
🔔 association_change: 121 events, 0 properties
🔔 property_change: 338 events, 11 properties
🔔 creation: 23 events, 0 properties
🏢 Config 1053 (Sensi.AI - 1117) - 8574 webhooks
📦 company: 1694 webhooks
🔔 property_change: 156 events, 6 properties
🔔 creation: 39 events, 0 properties
🔔 association_change: 1499 events, 0 properties
📦 deal: 663 webhooks
🔔 property_change: 491 events, 15 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 74 events, 0 properties
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 2108 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
📦 deal: 39 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 23 events, 6 properties
📦 company: 330 webhooks
🔔 association_change: 298 events, 0 properties
🔔 property_change: 23 events, 5 properties
🔔 creation: 9 events, 0 properties
🏢 Config 518 (Prolific - 544) - 9399 webhooks
📦 deal: 26 webhooks
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
📦 company: 957 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 352 events, 0 properties
🔔 property_change: 575 events, 6 properties
🏢 Config 761 (Ressio Software - 770) - 4387 webhooks
📦 company: 2012 webhooks
🔔 property_change: 1370 events, 6 properties
🔔 creation: 207 events, 0 properties
🔔 association_change: 435 events, 0 properties
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
📦 deal: 255 webhooks
🔔 property_change: 119 events, 5 properties
🔔 creation: 17 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 874 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
📦 company: 64 webhooks
🔔 association_change: 36 events, 0 properties
🔔 property_change: 24 events, 6 properties
🔔 creation: 4 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
📦 deal: 280 webhooks
🔔 property_change: 225 events, 11 properties
🔔 creation: 14 events, 0 properties
🔔 association_change: 41 events, 0 properties
📦 company: 173 webhooks
🔔 property_change: 34 events, 3 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 130 events, 0 properties
🏢 Config 581 (Penfold - 606) - 1191 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
📦 company: 266 webhooks
🔔 creation: 21 events, 0 properties
🔔 property_change: 78 events, 6 properties
🔔 association_change: 167 events, 0 properties
📦 deal: 73 webhooks
🔔 association_change: 18 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 49 events, 7 properties
🏢 Config 1015 (Travefy - 1049) - 4021 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
📦 deal: 1468 webhooks
🔔 property_change: 1072 events, 10 properties
🔔 creation: 99 events, 0 properties
🔔 association_change: 297 events, 0 properties
📦 company: 924 webhooks
🔔 creation: 151 events, 0 properties
🔔 association_change: 510 events, 0 properties
🔔 property_change: 263 events, 2 properties
🏢 Config 413 (VCC - 347) - 56 webhooks
📦 deal: 11 webhooks
🔔 property_change: 10 events, 5 properties
🔔 association_change: 1 events, 0 properties
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 company: 30 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 18 events, 2 properties
🔔 creation: 9 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks
📦 company: 160 webhooks
🔔 property_change: 30 events, 3 properties
🔔 association_change: 122 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 34 webhooks
🔔 property_change: 34 events, 6 properties
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 243 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
📦 deal: 68 webhooks
🔔 creation: 5 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 47 events, 9 properties
📦 company: 42 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 12 events, 6 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 39 webhooks
📦 company: 13 webhooks
🔔 property_change: 5 events, 3 properties
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 163 webhooks
📦 company: 41 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 29 events, 0 properties
🔔 property_change: 11 events, 6 properties
📦 deal: 21 webhooks
🔔 property_change: 17 events, 6 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 580 webhooks
📦 deal: 255 webhooks
🔔 creation: 12 events, 0 properties
🔔 property_change: 204 events, 7 properties
🔔 association_change: 39 events, 0 properties
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
📦 company: 132 webhooks
🔔 property_change: 61 events, 6 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 300 (Prowly - 318) - 430 webhooks
📦 company: 102 webhooks
🔔 creation: 10 events, 0 properties
🔔 association_change: 66 events, 0 properties
🔔 property_change: 26 events, 6 properties
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
📦 deal: 126 webhooks
🔔 property_change: 80 events, 9 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 37 events, 0 properties
🏢 Config 265 (Orbital - 283) - 3300 webhooks
📦 deal: 255 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 207 events, 10 properties
🔔 association_change: 45 events, 0 properties
📦 company: 921 webhooks
🔔 property_change: 48 events, 6 properties
🔔 creation: 11 events, 0 properties
🔔 association_change: 862 events, 0 properties
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 1138 webhooks
📦 company: 141 webhooks
🔔 property_change: 35 events, 3 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 59 webhooks
🔔 creation: 11 events, 0 properties
🔔 association_change: 27 events, 0 properties
🔔 property_change: 21 events, 5 properties
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 70 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
📦 company: 16 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🔔 association_change: 10 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 3713 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
📦 deal: 1822 webhooks
🔔 creation: 18 events, 0 properties
🔔 association_change: 1278 events, 0 properties
🔔 property_change: 526 events, 7 properties
📦 company: 556 webhooks
🔔 association_change: 451 events, 0 properties
🔔 property_change: 68 events, 3 properties
🔔 creation: 37 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 67 webhooks
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 31 webhooks
🔔 association_change: 7 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 23 events, 7 properties
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 151 webhooks
📦 company: 35 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 8 events, 4 properties
🔔 association_change: 22 events, 0 properties
📦 deal: 1 webhooks
🔔 property_change: 1 events, 1 properties
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 4102 webhooks
📦 company: 1117 webhooks
🔔 creation: 92 events, 0 properties
🔔 association_change: 676 events, 0 properties
🔔 property_change: 349 events, 4 properties
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
📦 deal: 61 webhooks
🔔 property_change: 49 events, 13 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 97 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 20 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 3 properties
🔔 association_change: 14 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 2244 webhooks
📦 company: 297 webhooks
🔔 property_change: 104 events, 3 properties
🔔 association_change: 155 events, 0 properties
🔔 creation: 38 events, 0 properties
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
📦 deal: 430 webhooks
🔔 property_change: 285 events, 6 properties
🔔 creation: 40 events, 0 properties
🔔 association_change: 105 events, 0 properties
🏢 Config 339 (Rosterfy - 359) - 1274 webhooks
📦 deal: 86 webhooks
🔔 property_change: 69 events, 8 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 14 events, 0 properties
📦 company: 370 webhooks
🔔 creation: 33 events, 0 properties
🔔 property_change: 163 events, 6 properties
🔔 association_change: 174 events, 0 properties
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 344 webhooks
📦 deal: 82 webhooks
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 70 events, 8 properties
📦 company: 89 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🔔 property_change: 34 events, 4 properties
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 174 webhooks
📦 company: 40 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 22 events, 5 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🏢\u0000 Config 908 (JPA Workspaces - 956) - 1223 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 3 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 company: 457 webhooks\n 🔔\u0000 property_change: 447 events, 2 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks\n 📦\u0000 company: 614 webhooks\n 🔔\u0000 property_change: 175 events, 6 properties\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 association_change: 424 events, 0 properties\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n 📦\u0000 deal: 9 webhooks\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 7898 webhooks\n 📦\u0000 deal: 27 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 4 events, 2 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n 📦\u0000 company: 2284 webhooks\n 🔔\u0000 association_change: 1818 events, 0 properties\n 🔔\u0000 property_change: 308 events, 6 properties\n 🔔\u0000 creation: 158 events, 0 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 342 webhooks\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 property_change: 25 events, 6 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 deal: 151 webhooks\n 🔔\u0000 property_change: 82 events, 11 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 871 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n 📦\u0000 company: 299 webhooks\n 🔔\u0000 association_change: 188 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 93 events, 6 properties\n 📦\u0000 deal: 78 webhooks\n 🔔\u0000 property_change: 56 events, 9 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 547 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 3 properties\n 📦\u0000 deal: 42 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 25 events, 5 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 99 webhooks\n 📦\u0000 company: 32 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 463 webhooks\n 📦\u0000 company: 161 webhooks\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 147 webhooks\n 🔔\u0000 property_change: 69 events, 12 properties\n 🔔\u0000 association_change: 74 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 982 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n 📦\u0000 company: 329 webhooks\n 🔔\u0000 property_change: 130 events, 4 properties\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 45 events, 0 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 5 events, 2 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 134 webhooks\n 📦\u0000 company: 34 webhooks\n 🔔\u0000 property_change: 13 events, 5 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 869 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n 📦\u0000 deal: 266 webhooks\n 🔔\u0000 creation: 28 events, 0 properties\n 🔔\u0000 property_change: 153 events, 7 properties\n 🔔\u0000 association_change: 85 events, 0 properties\n 📦\u0000 company: 101 webhooks\n 🔔\u0000 association_change: 86 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 1101 webhooks\n 📦\u0000 deal: 190 webhooks\n 🔔\u0000 association_change: 57 events, 0 properties\n 🔔\u0000 property_change: 117 events, 8 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 📦\u0000 company: 248 webhooks\n 🔔\u0000 association_change: 149 events, 0 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 property_change: 73 events, 5 properties\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 225415 webhooks\n 📦\u0000 company: 35595 webhooks\n 🔔\u0000 property_change: 5687 events, 3 properties\n 🔔\u0000 association_change: 25219 events, 0 properties\n 🔔\u0000 creation: 4689 events, 0 properties\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n 📦\u0000 deal: 113081 webhooks\n 🔔\u0000 creation: 7588 events, 0 properties\n 🔔\u0000 property_change: 82720 events, 9 properties\n 🔔\u0000 association_change: 22773 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 635 webhooks\n 📦\u0000 deal: 228 webhooks\n 🔔\u0000 property_change: 158 events, 9 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 52 events, 0 properties\n 📦\u0000 company: 142 webhooks\n 🔔\u0000 property_change: 59 events, 6 properties\n 🔔\u0000 association_change: 69 events, 0 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 374 webhooks\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 118 webhooks\n 🔔\u0000 property_change: 78 events, 10 properties\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 83 webhooks\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 deal: 17 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 13 events, 6 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 24 webhooks\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 898 webhooks\n 📦\u0000 company: 12 webhooks\n 🔔\u0000 property_change: 5 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 📦\u0000 deal: 480 webhooks\n 🔔\u0000 association_change: 40 events, 0 properties\n 🔔\u0000 creation: 35 events, 0 properties\n 🔔\u0000 property_change: 405 events, 8 properties\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 5388 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n 📦\u0000 company: 1647 webhooks\n 🔔\u0000 association_change: 698 events, 0 properties\n 🔔\u0000 property_change: 637 events, 6 properties\n 🔔\u0000 creation: 312 events, 0 properties\n 📦\u0000 deal: 55 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 1231 webhooks\n 📦\u0000 company: 274 webhooks\n 🔔\u0000 property_change: 128 events, 6 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 120 events, 0 properties\n 📦\u0000 deal: 464 webhooks\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 385 events, 23 properties\n 🔔\u0000 association_change: 63 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 3864 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n 📦\u0000 company: 742 webhooks\n 🔔\u0000 association_change: 617 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 🔔\u0000 property_change: 94 events, 6 properties\n 📦\u0000 deal: 482 webhooks\n 🔔\u0000 association_change: 121 events, 0 properties\n 🔔\u0000 property_change: 338 events, 11 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 8574 webhooks\n 📦\u0000 company: 1694 webhooks\n 🔔\u0000 property_change: 156 events, 6 properties\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 1499 events, 0 properties\n 📦\u0000 deal: 663 webhooks\n 🔔\u0000 property_change: 491 events, 15 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 74 events, 0 properties\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 2108 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n 📦\u0000 deal: 39 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 23 events, 6 properties\n 📦\u0000 company: 330 webhooks\n 🔔\u0000 association_change: 298 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 9399 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n 📦\u0000 company: 957 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 352 events, 0 properties\n 🔔\u0000 property_change: 575 events, 6 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 4387 webhooks\n 📦\u0000 company: 2012 webhooks\n 🔔\u0000 property_change: 1370 events, 6 properties\n 🔔\u0000 creation: 207 events, 0 properties\n 🔔\u0000 association_change: 435 events, 0 properties\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 property_change: 119 events, 5 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 874 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 association_change: 36 events, 0 properties\n 🔔\u0000 property_change: 24 events, 6 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n 📦\u0000 deal: 280 webhooks\n 🔔\u0000 property_change: 225 events, 11 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 🔔\u0000 association_change: 41 events, 0 properties\n 📦\u0000 company: 173 webhooks\n 🔔\u0000 property_change: 34 events, 3 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 130 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 1191 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n 📦\u0000 company: 266 webhooks\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 78 events, 6 properties\n 🔔\u0000 association_change: 167 events, 0 properties\n 📦\u0000 deal: 73 webhooks\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 49 events, 7 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 4021 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n 📦\u0000 deal: 1468 webhooks\n 🔔\u0000 property_change: 1072 events, 10 properties\n 🔔\u0000 creation: 99 events, 0 properties\n 🔔\u0000 association_change: 297 events, 0 properties\n 📦\u0000 company: 924 webhooks\n 🔔\u0000 creation: 151 events, 0 properties\n 🔔\u0000 association_change: 510 events, 0 properties\n 🔔\u0000 property_change: 263 events, 2 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 56 webhooks\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 10 events, 5 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 30 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 18 events, 2 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks\n 📦\u0000 company: 160 webhooks\n 🔔\u0000 property_change: 30 events, 3 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 34 webhooks\n 🔔\u0000 property_change: 34 events, 6 properties\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 243 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 📦\u0000 deal: 68 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 47 events, 9 properties\n 📦\u0000 company: 42 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 12 events, 6 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 39 webhooks\n 📦\u0000 company: 13 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 163 webhooks\n 📦\u0000 company: 41 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 property_change: 11 events, 6 properties\n 📦\u0000 deal: 21 webhooks\n 🔔\u0000 property_change: 17 events, 6 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 580 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 property_change: 204 events, 7 properties\n 🔔\u0000 association_change: 39 events, 0 properties\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 132 webhooks\n 🔔\u0000 property_change: 61 events, 6 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 430 webhooks\n 📦\u0000 company: 102 webhooks\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 66 events, 0 properties\n 🔔\u0000 property_change: 26 events, 6 properties\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n 📦\u0000 deal: 126 webhooks\n 🔔\u0000 property_change: 80 events, 9 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 37 events, 0 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 3300 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 207 events, 10 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 921 webhooks\n 🔔\u0000 property_change: 48 events, 6 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 862 events, 0 properties\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 1138 webhooks\n 📦\u0000 company: 141 webhooks\n 🔔\u0000 property_change: 35 events, 3 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 59 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 property_change: 21 events, 5 properties\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 70 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 16 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 3713 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n 📦\u0000 deal: 1822 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 1278 events, 0 properties\n 🔔\u0000 property_change: 526 events, 7 properties\n 📦\u0000 company: 556 webhooks\n 🔔\u0000 association_change: 451 events, 0 properties\n 🔔\u0000 property_change: 68 events, 3 properties\n 🔔\u0000 creation: 37 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 67 webhooks\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 31 webhooks\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 23 events, 7 properties\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 151 webhooks\n 📦\u0000 company: 35 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 deal: 1 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 4102 webhooks\n 📦\u0000 company: 1117 webhooks\n 🔔\u0000 creation: 92 events, 0 properties\n 🔔\u0000 association_change: 676 events, 0 properties\n 🔔\u0000 property_change: 349 events, 4 properties\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n 📦\u0000 deal: 61 webhooks\n 🔔\u0000 property_change: 49 events, 13 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 97 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 2244 webhooks\n 📦\u0000 company: 297 webhooks\n 🔔\u0000 property_change: 104 events, 3 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n 🔔\u0000 creation: 38 events, 0 properties\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n 📦\u0000 deal: 430 webhooks\n 🔔\u0000 property_change: 285 events, 6 properties\n 🔔\u0000 creation: 40 events, 0 properties\n 🔔\u0000 association_change: 105 events, 0 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 1274 webhooks\n 📦\u0000 deal: 86 webhooks\n 🔔\u0000 property_change: 69 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n 📦\u0000 company: 370 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 163 events, 6 properties\n 🔔\u0000 association_change: 174 events, 0 properties\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 344 webhooks\n 📦\u0000 deal: 82 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 70 events, 8 properties\n 📦\u0000 company: 89 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 34 events, 4 properties\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 174 webhooks\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 22 events, 5 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🏢\u0000 Config 908 (JPA Workspaces - 956) - 1223 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 3 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 company: 457 webhooks\n 🔔\u0000 property_change: 447 events, 2 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks\n 📦\u0000 company: 614 webhooks\n 🔔\u0000 property_change: 175 events, 6 properties\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 association_change: 424 events, 0 properties\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n 📦\u0000 deal: 9 webhooks\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 7898 webhooks\n 📦\u0000 deal: 27 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 4 events, 2 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n 📦\u0000 company: 2284 webhooks\n 🔔\u0000 association_change: 1818 events, 0 properties\n 🔔\u0000 property_change: 308 events, 6 properties\n 🔔\u0000 creation: 158 events, 0 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 342 webhooks\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 property_change: 25 events, 6 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 deal: 151 webhooks\n 🔔\u0000 property_change: 82 events, 11 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 871 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n 📦\u0000 company: 299 webhooks\n 🔔\u0000 association_change: 188 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 93 events, 6 properties\n 📦\u0000 deal: 78 webhooks\n 🔔\u0000 property_change: 56 events, 9 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 547 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 3 properties\n 📦\u0000 deal: 42 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 25 events, 5 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 99 webhooks\n 📦\u0000 company: 32 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 463 webhooks\n 📦\u0000 company: 161 webhooks\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 147 webhooks\n 🔔\u0000 property_change: 69 events, 12 properties\n 🔔\u0000 association_change: 74 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 982 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n 📦\u0000 company: 329 webhooks\n 🔔\u0000 property_change: 130 events, 4 properties\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 45 events, 0 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 5 events, 2 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 134 webhooks\n 📦\u0000 company: 34 webhooks\n 🔔\u0000 property_change: 13 events, 5 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 869 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n 📦\u0000 deal: 266 webhooks\n 🔔\u0000 creation: 28 events, 0 properties\n 🔔\u0000 property_change: 153 events, 7 properties\n 🔔\u0000 association_change: 85 events, 0 properties\n 📦\u0000 company: 101 webhooks\n 🔔\u0000 association_change: 86 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 1101 webhooks\n 📦\u0000 deal: 190 webhooks\n 🔔\u0000 association_change: 57 events, 0 properties\n 🔔\u0000 property_change: 117 events, 8 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 📦\u0000 company: 248 webhooks\n 🔔\u0000 association_change: 149 events, 0 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 property_change: 73 events, 5 properties\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 225415 webhooks\n 📦\u0000 company: 35595 webhooks\n 🔔\u0000 property_change: 5687 events, 3 properties\n 🔔\u0000 association_change: 25219 events, 0 properties\n 🔔\u0000 creation: 4689 events, 0 properties\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n 📦\u0000 deal: 113081 webhooks\n 🔔\u0000 creation: 7588 events, 0 properties\n 🔔\u0000 property_change: 82720 events, 9 properties\n 🔔\u0000 association_change: 22773 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 635 webhooks\n 📦\u0000 deal: 228 webhooks\n 🔔\u0000 property_change: 158 events, 9 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 52 events, 0 properties\n 📦\u0000 company: 142 webhooks\n 🔔\u0000 property_change: 59 events, 6 properties\n 🔔\u0000 association_change: 69 events, 0 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 374 webhooks\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 118 webhooks\n 🔔\u0000 property_change: 78 events, 10 properties\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 83 webhooks\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 deal: 17 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 13 events, 6 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 24 webhooks\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 898 webhooks\n 📦\u0000 company: 12 webhooks\n 🔔\u0000 property_change: 5 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 📦\u0000 deal: 480 webhooks\n 🔔\u0000 association_change: 40 events, 0 properties\n 🔔\u0000 creation: 35 events, 0 properties\n 🔔\u0000 property_change: 405 events, 8 properties\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 5388 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n 📦\u0000 company: 1647 webhooks\n 🔔\u0000 association_change: 698 events, 0 properties\n 🔔\u0000 property_change: 637 events, 6 properties\n 🔔\u0000 creation: 312 events, 0 properties\n 📦\u0000 deal: 55 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 1231 webhooks\n 📦\u0000 company: 274 webhooks\n 🔔\u0000 property_change: 128 events, 6 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 120 events, 0 properties\n 📦\u0000 deal: 464 webhooks\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 385 events, 23 properties\n 🔔\u0000 association_change: 63 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 3864 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n 📦\u0000 company: 742 webhooks\n 🔔\u0000 association_change: 617 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 🔔\u0000 property_change: 94 events, 6 properties\n 📦\u0000 deal: 482 webhooks\n 🔔\u0000 association_change: 121 events, 0 properties\n 🔔\u0000 property_change: 338 events, 11 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 8574 webhooks\n 📦\u0000 company: 1694 webhooks\n 🔔\u0000 property_change: 156 events, 6 properties\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 1499 events, 0 properties\n 📦\u0000 deal: 663 webhooks\n 🔔\u0000 property_change: 491 events, 15 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 74 events, 0 properties\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 2108 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n 📦\u0000 deal: 39 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 23 events, 6 properties\n 📦\u0000 company: 330 webhooks\n 🔔\u0000 association_change: 298 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 9399 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n 📦\u0000 company: 957 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 352 events, 0 properties\n 🔔\u0000 property_change: 575 events, 6 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 4387 webhooks\n 📦\u0000 company: 2012 webhooks\n 🔔\u0000 property_change: 1370 events, 6 properties\n 🔔\u0000 creation: 207 events, 0 properties\n 🔔\u0000 association_change: 435 events, 0 properties\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 property_change: 119 events, 5 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 874 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 association_change: 36 events, 0 properties\n 🔔\u0000 property_change: 24 events, 6 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n 📦\u0000 deal: 280 webhooks\n 🔔\u0000 property_change: 225 events, 11 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 🔔\u0000 association_change: 41 events, 0 properties\n 📦\u0000 company: 173 webhooks\n 🔔\u0000 property_change: 34 events, 3 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 130 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 1191 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n 📦\u0000 company: 266 webhooks\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 78 events, 6 properties\n 🔔\u0000 association_change: 167 events, 0 properties\n 📦\u0000 deal: 73 webhooks\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 49 events, 7 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 4021 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n 📦\u0000 deal: 1468 webhooks\n 🔔\u0000 property_change: 1072 events, 10 properties\n 🔔\u0000 creation: 99 events, 0 properties\n 🔔\u0000 association_change: 297 events, 0 properties\n 📦\u0000 company: 924 webhooks\n 🔔\u0000 creation: 151 events, 0 properties\n 🔔\u0000 association_change: 510 events, 0 properties\n 🔔\u0000 property_change: 263 events, 2 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 56 webhooks\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 10 events, 5 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 30 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 18 events, 2 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks\n 📦\u0000 company: 160 webhooks\n 🔔\u0000 property_change: 30 events, 3 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 34 webhooks\n 🔔\u0000 property_change: 34 events, 6 properties\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 243 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 📦\u0000 deal: 68 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 47 events, 9 properties\n 📦\u0000 company: 42 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 12 events, 6 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 39 webhooks\n 📦\u0000 company: 13 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 163 webhooks\n 📦\u0000 company: 41 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 property_change: 11 events, 6 properties\n 📦\u0000 deal: 21 webhooks\n 🔔\u0000 property_change: 17 events, 6 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 580 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 property_change: 204 events, 7 properties\n 🔔\u0000 association_change: 39 events, 0 properties\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 132 webhooks\n 🔔\u0000 property_change: 61 events, 6 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 430 webhooks\n 📦\u0000 company: 102 webhooks\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 66 events, 0 properties\n 🔔\u0000 property_change: 26 events, 6 properties\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n 📦\u0000 deal: 126 webhooks\n 🔔\u0000 property_change: 80 events, 9 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 37 events, 0 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 3300 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 207 events, 10 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 921 webhooks\n 🔔\u0000 property_change: 48 events, 6 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 862 events, 0 properties\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 1138 webhooks\n 📦\u0000 company: 141 webhooks\n 🔔\u0000 property_change: 35 events, 3 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 59 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 property_change: 21 events, 5 properties\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 70 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 16 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 3713 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n 📦\u0000 deal: 1822 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 1278 events, 0 properties\n 🔔\u0000 property_change: 526 events, 7 properties\n 📦\u0000 company: 556 webhooks\n 🔔\u0000 association_change: 451 events, 0 properties\n 🔔\u0000 property_change: 68 events, 3 properties\n 🔔\u0000 creation: 37 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 67 webhooks\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 31 webhooks\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 23 events, 7 properties\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 151 webhooks\n 📦\u0000 company: 35 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 deal: 1 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 4102 webhooks\n 📦\u0000 company: 1117 webhooks\n 🔔\u0000 creation: 92 events, 0 properties\n 🔔\u0000 association_change: 676 events, 0 properties\n 🔔\u0000 property_change: 349 events, 4 properties\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n 📦\u0000 deal: 61 webhooks\n 🔔\u0000 property_change: 49 events, 13 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 97 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 2244 webhooks\n 📦\u0000 company: 297 webhooks\n 🔔\u0000 property_change: 104 events, 3 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n 🔔\u0000 creation: 38 events, 0 properties\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n 📦\u0000 deal: 430 webhooks\n 🔔\u0000 property_change: 285 events, 6 properties\n 🔔\u0000 creation: 40 events, 0 properties\n 🔔\u0000 association_change: 105 events, 0 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 1274 webhooks\n 📦\u0000 deal: 86 webhooks\n 🔔\u0000 property_change: 69 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n 📦\u0000 company: 370 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 163 events, 6 properties\n 🔔\u0000 association_change: 174 events, 0 properties\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 344 webhooks\n 📦\u0000 deal: 82 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 70 events, 8 properties\n 📦\u0000 company: 89 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 34 events, 4 properties\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 174 webhooks\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 22 events, 5 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.32912233,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.33111703,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.3879654,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3899601,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.44680852,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.4488032,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.5056516,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.50764626,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.56449467,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.56648934,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.62333775,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6253325,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.6821808,"top":1.0,"width":0.058843084,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.68417555,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7273936,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.47539893,"top":1.0,"width":0.068484046,"height":-0.02394259},"role_description":"text"}]...
|
-6332822914128299075
|
-5421059355094964400
|
visual_change
|
accessibility
|
NULL
|
🏢 Config 908 (JPA Workspaces - 956) - 1223 webhoo 🏢 Config 908 (JPA Workspaces - 956) - 1223 webhooks
📦 deal: 26 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 14 events, 3 properties
🔔 association_change: 9 events, 0 properties
📦 company: 457 webhooks
🔔 property_change: 447 events, 2 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks
📦 company: 614 webhooks
🔔 property_change: 175 events, 6 properties
🔔 creation: 15 events, 0 properties
🔔 association_change: 424 events, 0 properties
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
📦 deal: 9 webhooks
🔔 property_change: 8 events, 4 properties
🔔 association_change: 1 events, 0 properties
🏢 Config 880 (Immutable - 931) - 7898 webhooks
📦 deal: 27 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 4 events, 2 properties
🔔 association_change: 21 events, 0 properties
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
📦 company: 2284 webhooks
🔔 association_change: 1818 events, 0 properties
🔔 property_change: 308 events, 6 properties
🔔 creation: 158 events, 0 properties
🏢 Config 877 (GroWrk Remote - 927) - 342 webhooks
📦 company: 74 webhooks
🔔 property_change: 25 events, 6 properties
🔔 association_change: 44 events, 0 properties
🔔 creation: 5 events, 0 properties
📦 deal: 151 webhooks
🔔 property_change: 82 events, 11 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 11 events, 0 properties
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 871 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
📦 company: 299 webhooks
🔔 association_change: 188 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 93 events, 6 properties
📦 deal: 78 webhooks
🔔 property_change: 56 events, 9 properties
🔔 creation: 4 events, 0 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 547 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
📦 company: 40 webhooks
🔔 association_change: 30 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 3 properties
📦 deal: 42 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 25 events, 5 properties
🏢 Config 583 (One Core Media - 608) - 99 webhooks
📦 company: 32 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 463 webhooks
📦 company: 161 webhooks
🔔 association_change: 160 events, 0 properties
🔔 property_change: 1 events, 1 properties
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 deal: 147 webhooks
🔔 property_change: 69 events, 12 properties
🔔 association_change: 74 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 982 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
📦 company: 329 webhooks
🔔 property_change: 130 events, 4 properties
🔔 association_change: 154 events, 0 properties
🔔 creation: 45 events, 0 properties
📦 deal: 18 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 5 events, 2 properties
🏢 Config 270 (Heka Happy - 288) - 134 webhooks
📦 company: 34 webhooks
🔔 property_change: 13 events, 5 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 5 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 869 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
📦 deal: 266 webhooks
🔔 creation: 28 events, 0 properties
🔔 property_change: 153 events, 7 properties
🔔 association_change: 85 events, 0 properties
📦 company: 101 webhooks
🔔 association_change: 86 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 creation: 4 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 1101 webhooks
📦 deal: 190 webhooks
🔔 association_change: 57 events, 0 properties
🔔 property_change: 117 events, 8 properties
🔔 creation: 16 events, 0 properties
📦 company: 248 webhooks
🔔 association_change: 149 events, 0 properties
🔔 creation: 26 events, 0 properties
🔔 property_change: 73 events, 5 properties
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 225415 webhooks
📦 company: 35595 webhooks
🔔 property_change: 5687 events, 3 properties
🔔 association_change: 25219 events, 0 properties
🔔 creation: 4689 events, 0 properties
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
📦 deal: 113081 webhooks
🔔 creation: 7588 events, 0 properties
🔔 property_change: 82720 events, 9 properties
🔔 association_change: 22773 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 635 webhooks
📦 deal: 228 webhooks
🔔 property_change: 158 events, 9 properties
🔔 creation: 18 events, 0 properties
🔔 association_change: 52 events, 0 properties
📦 company: 142 webhooks
🔔 property_change: 59 events, 6 properties
🔔 association_change: 69 events, 0 properties
🔔 creation: 14 events, 0 properties
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 374 webhooks
📦 company: 64 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 15 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 118 webhooks
🔔 property_change: 78 events, 10 properties
🔔 association_change: 30 events, 0 properties
🔔 creation: 10 events, 0 properties
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 83 webhooks
📦 company: 11 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
📦 deal: 17 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🔔 property_change: 13 events, 6 properties
🏢 Config 1049 (Classavo - 851) - 24 webhooks
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 1 events, 0 properties
🏢 Config 290 (D1 Training - 308) - 898 webhooks
📦 company: 12 webhooks
🔔 property_change: 5 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 6 events, 0 properties
📦 deal: 480 webhooks
🔔 association_change: 40 events, 0 properties
🔔 creation: 35 events, 0 properties
🔔 property_change: 405 events, 8 properties
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 5388 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
📦 company: 1647 webhooks
🔔 association_change: 698 events, 0 properties
🔔 property_change: 637 events, 6 properties
🔔 creation: 312 events, 0 properties
📦 deal: 55 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 1231 webhooks
📦 company: 274 webhooks
🔔 property_change: 128 events, 6 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 120 events, 0 properties
📦 deal: 464 webhooks
🔔 creation: 16 events, 0 properties
🔔 property_change: 385 events, 23 properties
🔔 association_change: 63 events, 0 properties
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 3864 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
📦 company: 742 webhooks
🔔 association_change: 617 events, 0 properties
🔔 creation: 31 events, 0 properties
🔔 property_change: 94 events, 6 properties
📦 deal: 482 webhooks
🔔 association_change: 121 events, 0 properties
🔔 property_change: 338 events, 11 properties
🔔 creation: 23 events, 0 properties
🏢 Config 1053 (Sensi.AI - 1117) - 8574 webhooks
📦 company: 1694 webhooks
🔔 property_change: 156 events, 6 properties
🔔 creation: 39 events, 0 properties
🔔 association_change: 1499 events, 0 properties
📦 deal: 663 webhooks
🔔 property_change: 491 events, 15 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 74 events, 0 properties
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 2108 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
📦 deal: 39 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 23 events, 6 properties
📦 company: 330 webhooks
🔔 association_change: 298 events, 0 properties
🔔 property_change: 23 events, 5 properties
🔔 creation: 9 events, 0 properties
🏢 Config 518 (Prolific - 544) - 9399 webhooks
📦 deal: 26 webhooks
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
📦 company: 957 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 352 events, 0 properties
🔔 property_change: 575 events, 6 properties
🏢 Config 761 (Ressio Software - 770) - 4387 webhooks
📦 company: 2012 webhooks
🔔 property_change: 1370 events, 6 properties
🔔 creation: 207 events, 0 properties
🔔 association_change: 435 events, 0 properties
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
📦 deal: 255 webhooks
🔔 property_change: 119 events, 5 properties
🔔 creation: 17 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 874 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
📦 company: 64 webhooks
🔔 association_change: 36 events, 0 properties
🔔 property_change: 24 events, 6 properties
🔔 creation: 4 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
📦 deal: 280 webhooks
🔔 property_change: 225 events, 11 properties
🔔 creation: 14 events, 0 properties
🔔 association_change: 41 events, 0 properties
📦 company: 173 webhooks
🔔 property_change: 34 events, 3 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 130 events, 0 properties
🏢 Config 581 (Penfold - 606) - 1191 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
📦 company: 266 webhooks
🔔 creation: 21 events, 0 properties
🔔 property_change: 78 events, 6 properties
🔔 association_change: 167 events, 0 properties
📦 deal: 73 webhooks
🔔 association_change: 18 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 49 events, 7 properties
🏢 Config 1015 (Travefy - 1049) - 4021 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
📦 deal: 1468 webhooks
🔔 property_change: 1072 events, 10 properties
🔔 creation: 99 events, 0 properties
🔔 association_change: 297 events, 0 properties
📦 company: 924 webhooks
🔔 creation: 151 events, 0 properties
🔔 association_change: 510 events, 0 properties
🔔 property_change: 263 events, 2 properties
🏢 Config 413 (VCC - 347) - 56 webhooks
📦 deal: 11 webhooks
🔔 property_change: 10 events, 5 properties
🔔 association_change: 1 events, 0 properties
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 company: 30 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 18 events, 2 properties
🔔 creation: 9 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks
📦 company: 160 webhooks
🔔 property_change: 30 events, 3 properties
🔔 association_change: 122 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 34 webhooks
🔔 property_change: 34 events, 6 properties
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 243 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
📦 deal: 68 webhooks
🔔 creation: 5 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 47 events, 9 properties
📦 company: 42 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 12 events, 6 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 39 webhooks
📦 company: 13 webhooks
🔔 property_change: 5 events, 3 properties
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 163 webhooks
📦 company: 41 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 29 events, 0 properties
🔔 property_change: 11 events, 6 properties
📦 deal: 21 webhooks
🔔 property_change: 17 events, 6 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 580 webhooks
📦 deal: 255 webhooks
🔔 creation: 12 events, 0 properties
🔔 property_change: 204 events, 7 properties
🔔 association_change: 39 events, 0 properties
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
📦 company: 132 webhooks
🔔 property_change: 61 events, 6 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 300 (Prowly - 318) - 430 webhooks
📦 company: 102 webhooks
🔔 creation: 10 events, 0 properties
🔔 association_change: 66 events, 0 properties
🔔 property_change: 26 events, 6 properties
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
📦 deal: 126 webhooks
🔔 property_change: 80 events, 9 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 37 events, 0 properties
🏢 Config 265 (Orbital - 283) - 3300 webhooks
📦 deal: 255 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 207 events, 10 properties
🔔 association_change: 45 events, 0 properties
📦 company: 921 webhooks
🔔 property_change: 48 events, 6 properties
🔔 creation: 11 events, 0 properties
🔔 association_change: 862 events, 0 properties
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 1138 webhooks
📦 company: 141 webhooks
🔔 property_change: 35 events, 3 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 59 webhooks
🔔 creation: 11 events, 0 properties
🔔 association_change: 27 events, 0 properties
🔔 property_change: 21 events, 5 properties
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 70 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
📦 company: 16 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🔔 association_change: 10 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 3713 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
📦 deal: 1822 webhooks
🔔 creation: 18 events, 0 properties
🔔 association_change: 1278 events, 0 properties
🔔 property_change: 526 events, 7 properties
📦 company: 556 webhooks
🔔 association_change: 451 events, 0 properties
🔔 property_change: 68 events, 3 properties
🔔 creation: 37 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 67 webhooks
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 31 webhooks
🔔 association_change: 7 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 23 events, 7 properties
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 151 webhooks
📦 company: 35 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 8 events, 4 properties
🔔 association_change: 22 events, 0 properties
📦 deal: 1 webhooks
🔔 property_change: 1 events, 1 properties
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 4102 webhooks
📦 company: 1117 webhooks
🔔 creation: 92 events, 0 properties
🔔 association_change: 676 events, 0 properties
🔔 property_change: 349 events, 4 properties
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
📦 deal: 61 webhooks
🔔 property_change: 49 events, 13 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 97 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 20 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 3 properties
🔔 association_change: 14 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 2244 webhooks
📦 company: 297 webhooks
🔔 property_change: 104 events, 3 properties
🔔 association_change: 155 events, 0 properties
🔔 creation: 38 events, 0 properties
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
📦 deal: 430 webhooks
🔔 property_change: 285 events, 6 properties
🔔 creation: 40 events, 0 properties
🔔 association_change: 105 events, 0 properties
🏢 Config 339 (Rosterfy - 359) - 1274 webhooks
📦 deal: 86 webhooks
🔔 property_change: 69 events, 8 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 14 events, 0 properties
📦 company: 370 webhooks
🔔 creation: 33 events, 0 properties
🔔 property_change: 163 events, 6 properties
🔔 association_change: 174 events, 0 properties
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 344 webhooks
📦 deal: 82 webhooks
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 70 events, 8 properties
📦 company: 89 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🔔 property_change: 34 events, 4 properties
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 174 webhooks
📦 company: 40 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 22 events, 5 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
69508
|
|
69510
|
1598
|
5
|
2026-04-22T08:14:52.215661+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776845692215_m1.jpg...
|
iTerm2
|
ec2-user@ip-10-30-159-186:~
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
🏢 Config 908 (JPA Workspaces - 956) - 1223 webhoo 🏢 Config 908 (JPA Workspaces - 956) - 1223 webhooks
📦 deal: 26 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 14 events, 3 properties
🔔 association_change: 9 events, 0 properties
📦 company: 457 webhooks
🔔 property_change: 447 events, 2 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks
📦 company: 614 webhooks
🔔 property_change: 175 events, 6 properties
🔔 creation: 15 events, 0 properties
🔔 association_change: 424 events, 0 properties
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
📦 deal: 9 webhooks
🔔 property_change: 8 events, 4 properties
🔔 association_change: 1 events, 0 properties
🏢 Config 880 (Immutable - 931) - 7898 webhooks
📦 deal: 27 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 4 events, 2 properties
🔔 association_change: 21 events, 0 properties
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
📦 company: 2284 webhooks
🔔 association_change: 1818 events, 0 properties
🔔 property_change: 308 events, 6 properties
🔔 creation: 158 events, 0 properties
🏢 Config 877 (GroWrk Remote - 927) - 342 webhooks
📦 company: 74 webhooks
🔔 property_change: 25 events, 6 properties
🔔 association_change: 44 events, 0 properties
🔔 creation: 5 events, 0 properties
📦 deal: 151 webhooks
🔔 property_change: 82 events, 11 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 11 events, 0 properties
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 871 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
📦 company: 299 webhooks
🔔 association_change: 188 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 93 events, 6 properties
📦 deal: 78 webhooks
🔔 property_change: 56 events, 9 properties
🔔 creation: 4 events, 0 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 547 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
📦 company: 40 webhooks
🔔 association_change: 30 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 3 properties
📦 deal: 42 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 25 events, 5 properties
🏢 Config 583 (One Core Media - 608) - 99 webhooks
📦 company: 32 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 463 webhooks
📦 company: 161 webhooks
🔔 association_change: 160 events, 0 properties
🔔 property_change: 1 events, 1 properties
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 deal: 147 webhooks
🔔 property_change: 69 events, 12 properties
🔔 association_change: 74 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 982 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
📦 company: 329 webhooks
🔔 property_change: 130 events, 4 properties
🔔 association_change: 154 events, 0 properties
🔔 creation: 45 events, 0 properties
📦 deal: 18 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 5 events, 2 properties
🏢 Config 270 (Heka Happy - 288) - 134 webhooks
📦 company: 34 webhooks
🔔 property_change: 13 events, 5 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 5 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 869 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
📦 deal: 266 webhooks
🔔 creation: 28 events, 0 properties
🔔 property_change: 153 events, 7 properties
🔔 association_change: 85 events, 0 properties
📦 company: 101 webhooks
🔔 association_change: 86 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 creation: 4 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 1101 webhooks
📦 deal: 190 webhooks
🔔 association_change: 57 events, 0 properties
🔔 property_change: 117 events, 8 properties
🔔 creation: 16 events, 0 properties
📦 company: 248 webhooks
🔔 association_change: 149 events, 0 properties
🔔 creation: 26 events, 0 properties
🔔 property_change: 73 events, 5 properties
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 225415 webhooks
📦 company: 35595 webhooks
🔔 property_change: 5687 events, 3 properties
🔔 association_change: 25219 events, 0 properties
🔔 creation: 4689 events, 0 properties
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
📦 deal: 113081 webhooks
🔔 creation: 7588 events, 0 properties
🔔 property_change: 82720 events, 9 properties
🔔 association_change: 22773 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 635 webhooks
📦 deal: 228 webhooks
🔔 property_change: 158 events, 9 properties
🔔 creation: 18 events, 0 properties
🔔 association_change: 52 events, 0 properties
📦 company: 142 webhooks
🔔 property_change: 59 events, 6 properties
🔔 association_change: 69 events, 0 properties
🔔 creation: 14 events, 0 properties
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 374 webhooks
📦 company: 64 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 15 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 118 webhooks
🔔 property_change: 78 events, 10 properties
🔔 association_change: 30 events, 0 properties
🔔 creation: 10 events, 0 properties
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 83 webhooks
📦 company: 11 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
📦 deal: 17 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🔔 property_change: 13 events, 6 properties
🏢 Config 1049 (Classavo - 851) - 24 webhooks
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 1 events, 0 properties
🏢 Config 290 (D1 Training - 308) - 898 webhooks
📦 company: 12 webhooks
🔔 property_change: 5 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 6 events, 0 properties
📦 deal: 480 webhooks
🔔 association_change: 40 events, 0 properties
🔔 creation: 35 events, 0 properties
🔔 property_change: 405 events, 8 properties
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 5388 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
📦 company: 1647 webhooks
🔔 association_change: 698 events, 0 properties
🔔 property_change: 637 events, 6 properties
🔔 creation: 312 events, 0 properties
📦 deal: 55 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 1231 webhooks
📦 company: 274 webhooks
🔔 property_change: 128 events, 6 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 120 events, 0 properties
📦 deal: 464 webhooks
🔔 creation: 16 events, 0 properties
🔔 property_change: 385 events, 23 properties
🔔 association_change: 63 events, 0 properties
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 3864 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
📦 company: 742 webhooks
🔔 association_change: 617 events, 0 properties
🔔 creation: 31 events, 0 properties
🔔 property_change: 94 events, 6 properties
📦 deal: 482 webhooks
🔔 association_change: 121 events, 0 properties
🔔 property_change: 338 events, 11 properties
🔔 creation: 23 events, 0 properties
🏢 Config 1053 (Sensi.AI - 1117) - 8574 webhooks
📦 company: 1694 webhooks
🔔 property_change: 156 events, 6 properties
🔔 creation: 39 events, 0 properties
🔔 association_change: 1499 events, 0 properties
📦 deal: 663 webhooks
🔔 property_change: 491 events, 15 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 74 events, 0 properties
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 2108 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
📦 deal: 39 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 23 events, 6 properties
📦 company: 330 webhooks
🔔 association_change: 298 events, 0 properties
🔔 property_change: 23 events, 5 properties
🔔 creation: 9 events, 0 properties
🏢 Config 518 (Prolific - 544) - 9399 webhooks
📦 deal: 26 webhooks
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
📦 company: 957 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 352 events, 0 properties
🔔 property_change: 575 events, 6 properties
🏢 Config 761 (Ressio Software - 770) - 4387 webhooks
📦 company: 2012 webhooks
🔔 property_change: 1370 events, 6 properties
🔔 creation: 207 events, 0 properties
🔔 association_change: 435 events, 0 properties
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
📦 deal: 255 webhooks
🔔 property_change: 119 events, 5 properties
🔔 creation: 17 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 874 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
📦 company: 64 webhooks
🔔 association_change: 36 events, 0 properties
🔔 property_change: 24 events, 6 properties
🔔 creation: 4 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
📦 deal: 280 webhooks
🔔 property_change: 225 events, 11 properties
🔔 creation: 14 events, 0 properties
🔔 association_change: 41 events, 0 properties
📦 company: 173 webhooks
🔔 property_change: 34 events, 3 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 130 events, 0 properties
🏢 Config 581 (Penfold - 606) - 1191 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
📦 company: 266 webhooks
🔔 creation: 21 events, 0 properties
🔔 property_change: 78 events, 6 properties
🔔 association_change: 167 events, 0 properties
📦 deal: 73 webhooks
🔔 association_change: 18 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 49 events, 7 properties
🏢 Config 1015 (Travefy - 1049) - 4021 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
📦 deal: 1468 webhooks
🔔 property_change: 1072 events, 10 properties
🔔 creation: 99 events, 0 properties
🔔 association_change: 297 events, 0 properties
📦 company: 924 webhooks
🔔 creation: 151 events, 0 properties
🔔 association_change: 510 events, 0 properties
🔔 property_change: 263 events, 2 properties
🏢 Config 413 (VCC - 347) - 56 webhooks
📦 deal: 11 webhooks
🔔 property_change: 10 events, 5 properties
🔔 association_change: 1 events, 0 properties
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 company: 30 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 18 events, 2 properties
🔔 creation: 9 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks
📦 company: 160 webhooks
🔔 property_change: 30 events, 3 properties
🔔 association_change: 122 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 34 webhooks
🔔 property_change: 34 events, 6 properties
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 243 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
📦 deal: 68 webhooks
🔔 creation: 5 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 47 events, 9 properties
📦 company: 42 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 12 events, 6 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 39 webhooks
📦 company: 13 webhooks
🔔 property_change: 5 events, 3 properties
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 163 webhooks
📦 company: 41 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 29 events, 0 properties
🔔 property_change: 11 events, 6 properties
📦 deal: 21 webhooks
🔔 property_change: 17 events, 6 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 580 webhooks
📦 deal: 255 webhooks
🔔 creation: 12 events, 0 properties
🔔 property_change: 204 events, 7 properties
🔔 association_change: 39 events, 0 properties
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
📦 company: 132 webhooks
🔔 property_change: 61 events, 6 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 300 (Prowly - 318) - 430 webhooks
📦 company: 102 webhooks
🔔 creation: 10 events, 0 properties
🔔 association_change: 66 events, 0 properties
🔔 property_change: 26 events, 6 properties
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
📦 deal: 126 webhooks
🔔 property_change: 80 events, 9 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 37 events, 0 properties
🏢 Config 265 (Orbital - 283) - 3300 webhooks
📦 deal: 255 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 207 events, 10 properties
🔔 association_change: 45 events, 0 properties
📦 company: 921 webhooks
🔔 property_change: 48 events, 6 properties
🔔 creation: 11 events, 0 properties
🔔 association_change: 862 events, 0 properties
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 1138 webhooks
📦 company: 141 webhooks
🔔 property_change: 35 events, 3 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 59 webhooks
🔔 creation: 11 events, 0 properties
🔔 association_change: 27 events, 0 properties
🔔 property_change: 21 events, 5 properties
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 70 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
📦 company: 16 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🔔 association_change: 10 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 3713 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
📦 deal: 1822 webhooks
🔔 creation: 18 events, 0 properties
🔔 association_change: 1278 events, 0 properties
🔔 property_change: 526 events, 7 properties
📦 company: 556 webhooks
🔔 association_change: 451 events, 0 properties
🔔 property_change: 68 events, 3 properties
🔔 creation: 37 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 67 webhooks
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 31 webhooks
🔔 association_change: 7 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 23 events, 7 properties
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 151 webhooks
📦 company: 35 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 8 events, 4 properties
🔔 association_change: 22 events, 0 properties
📦 deal: 1 webhooks
🔔 property_change: 1 events, 1 properties
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 4102 webhooks
📦 company: 1117 webhooks
🔔 creation: 92 events, 0 properties
🔔 association_change: 676 events, 0 properties
🔔 property_change: 349 events, 4 properties
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
📦 deal: 61 webhooks
🔔 property_change: 49 events, 13 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 97 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 20 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 3 properties
🔔 association_change: 14 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 2244 webhooks
📦 company: 297 webhooks
🔔 property_change: 104 events, 3 properties
🔔 association_change: 155 events, 0 properties
🔔 creation: 38 events, 0 properties
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
📦 deal: 430 webhooks
🔔 property_change: 285 events, 6 properties
🔔 creation: 40 events, 0 properties
🔔 association_change: 105 events, 0 properties
🏢 Config 339 (Rosterfy - 359) - 1274 webhooks
📦 deal: 86 webhooks
🔔 property_change: 69 events, 8 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 14 events, 0 properties
📦 company: 370 webhooks
🔔 creation: 33 events, 0 properties
🔔 property_change: 163 events, 6 properties
🔔 association_change: 174 events, 0 properties
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 344 webhooks
📦 deal: 82 webhooks
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 70 events, 8 properties
📦 company: 89 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🔔 property_change: 34 events, 4 properties
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 174 webhooks
📦 company: 40 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 22 events, 5 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"🏢\u0000 Config 908 (JPA Workspaces - 956) - 1223 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 3 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 company: 457 webhooks\n 🔔\u0000 property_change: 447 events, 2 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks\n 📦\u0000 company: 614 webhooks\n 🔔\u0000 property_change: 175 events, 6 properties\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 association_change: 424 events, 0 properties\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n 📦\u0000 deal: 9 webhooks\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 7898 webhooks\n 📦\u0000 deal: 27 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 4 events, 2 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n 📦\u0000 company: 2284 webhooks\n 🔔\u0000 association_change: 1818 events, 0 properties\n 🔔\u0000 property_change: 308 events, 6 properties\n 🔔\u0000 creation: 158 events, 0 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 342 webhooks\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 property_change: 25 events, 6 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 deal: 151 webhooks\n 🔔\u0000 property_change: 82 events, 11 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 871 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n 📦\u0000 company: 299 webhooks\n 🔔\u0000 association_change: 188 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 93 events, 6 properties\n 📦\u0000 deal: 78 webhooks\n 🔔\u0000 property_change: 56 events, 9 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 547 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 3 properties\n 📦\u0000 deal: 42 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 25 events, 5 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 99 webhooks\n 📦\u0000 company: 32 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 463 webhooks\n 📦\u0000 company: 161 webhooks\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 147 webhooks\n 🔔\u0000 property_change: 69 events, 12 properties\n 🔔\u0000 association_change: 74 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 982 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n 📦\u0000 company: 329 webhooks\n 🔔\u0000 property_change: 130 events, 4 properties\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 45 events, 0 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 5 events, 2 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 134 webhooks\n 📦\u0000 company: 34 webhooks\n 🔔\u0000 property_change: 13 events, 5 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 869 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n 📦\u0000 deal: 266 webhooks\n 🔔\u0000 creation: 28 events, 0 properties\n 🔔\u0000 property_change: 153 events, 7 properties\n 🔔\u0000 association_change: 85 events, 0 properties\n 📦\u0000 company: 101 webhooks\n 🔔\u0000 association_change: 86 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 1101 webhooks\n 📦\u0000 deal: 190 webhooks\n 🔔\u0000 association_change: 57 events, 0 properties\n 🔔\u0000 property_change: 117 events, 8 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 📦\u0000 company: 248 webhooks\n 🔔\u0000 association_change: 149 events, 0 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 property_change: 73 events, 5 properties\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 225415 webhooks\n 📦\u0000 company: 35595 webhooks\n 🔔\u0000 property_change: 5687 events, 3 properties\n 🔔\u0000 association_change: 25219 events, 0 properties\n 🔔\u0000 creation: 4689 events, 0 properties\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n 📦\u0000 deal: 113081 webhooks\n 🔔\u0000 creation: 7588 events, 0 properties\n 🔔\u0000 property_change: 82720 events, 9 properties\n 🔔\u0000 association_change: 22773 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 635 webhooks\n 📦\u0000 deal: 228 webhooks\n 🔔\u0000 property_change: 158 events, 9 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 52 events, 0 properties\n 📦\u0000 company: 142 webhooks\n 🔔\u0000 property_change: 59 events, 6 properties\n 🔔\u0000 association_change: 69 events, 0 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 374 webhooks\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 118 webhooks\n 🔔\u0000 property_change: 78 events, 10 properties\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 83 webhooks\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 deal: 17 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 13 events, 6 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 24 webhooks\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 898 webhooks\n 📦\u0000 company: 12 webhooks\n 🔔\u0000 property_change: 5 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 📦\u0000 deal: 480 webhooks\n 🔔\u0000 association_change: 40 events, 0 properties\n 🔔\u0000 creation: 35 events, 0 properties\n 🔔\u0000 property_change: 405 events, 8 properties\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 5388 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n 📦\u0000 company: 1647 webhooks\n 🔔\u0000 association_change: 698 events, 0 properties\n 🔔\u0000 property_change: 637 events, 6 properties\n 🔔\u0000 creation: 312 events, 0 properties\n 📦\u0000 deal: 55 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 1231 webhooks\n 📦\u0000 company: 274 webhooks\n 🔔\u0000 property_change: 128 events, 6 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 120 events, 0 properties\n 📦\u0000 deal: 464 webhooks\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 385 events, 23 properties\n 🔔\u0000 association_change: 63 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 3864 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n 📦\u0000 company: 742 webhooks\n 🔔\u0000 association_change: 617 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 🔔\u0000 property_change: 94 events, 6 properties\n 📦\u0000 deal: 482 webhooks\n 🔔\u0000 association_change: 121 events, 0 properties\n 🔔\u0000 property_change: 338 events, 11 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 8574 webhooks\n 📦\u0000 company: 1694 webhooks\n 🔔\u0000 property_change: 156 events, 6 properties\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 1499 events, 0 properties\n 📦\u0000 deal: 663 webhooks\n 🔔\u0000 property_change: 491 events, 15 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 74 events, 0 properties\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 2108 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n 📦\u0000 deal: 39 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 23 events, 6 properties\n 📦\u0000 company: 330 webhooks\n 🔔\u0000 association_change: 298 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 9399 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n 📦\u0000 company: 957 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 352 events, 0 properties\n 🔔\u0000 property_change: 575 events, 6 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 4387 webhooks\n 📦\u0000 company: 2012 webhooks\n 🔔\u0000 property_change: 1370 events, 6 properties\n 🔔\u0000 creation: 207 events, 0 properties\n 🔔\u0000 association_change: 435 events, 0 properties\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 property_change: 119 events, 5 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 874 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 association_change: 36 events, 0 properties\n 🔔\u0000 property_change: 24 events, 6 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n 📦\u0000 deal: 280 webhooks\n 🔔\u0000 property_change: 225 events, 11 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 🔔\u0000 association_change: 41 events, 0 properties\n 📦\u0000 company: 173 webhooks\n 🔔\u0000 property_change: 34 events, 3 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 130 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 1191 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n 📦\u0000 company: 266 webhooks\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 78 events, 6 properties\n 🔔\u0000 association_change: 167 events, 0 properties\n 📦\u0000 deal: 73 webhooks\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 49 events, 7 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 4021 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n 📦\u0000 deal: 1468 webhooks\n 🔔\u0000 property_change: 1072 events, 10 properties\n 🔔\u0000 creation: 99 events, 0 properties\n 🔔\u0000 association_change: 297 events, 0 properties\n 📦\u0000 company: 924 webhooks\n 🔔\u0000 creation: 151 events, 0 properties\n 🔔\u0000 association_change: 510 events, 0 properties\n 🔔\u0000 property_change: 263 events, 2 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 56 webhooks\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 10 events, 5 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 30 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 18 events, 2 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks\n 📦\u0000 company: 160 webhooks\n 🔔\u0000 property_change: 30 events, 3 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 34 webhooks\n 🔔\u0000 property_change: 34 events, 6 properties\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 243 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 📦\u0000 deal: 68 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 47 events, 9 properties\n 📦\u0000 company: 42 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 12 events, 6 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 39 webhooks\n 📦\u0000 company: 13 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 163 webhooks\n 📦\u0000 company: 41 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 property_change: 11 events, 6 properties\n 📦\u0000 deal: 21 webhooks\n 🔔\u0000 property_change: 17 events, 6 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 580 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 property_change: 204 events, 7 properties\n 🔔\u0000 association_change: 39 events, 0 properties\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 132 webhooks\n 🔔\u0000 property_change: 61 events, 6 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 430 webhooks\n 📦\u0000 company: 102 webhooks\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 66 events, 0 properties\n 🔔\u0000 property_change: 26 events, 6 properties\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n 📦\u0000 deal: 126 webhooks\n 🔔\u0000 property_change: 80 events, 9 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 37 events, 0 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 3300 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 207 events, 10 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 921 webhooks\n 🔔\u0000 property_change: 48 events, 6 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 862 events, 0 properties\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 1138 webhooks\n 📦\u0000 company: 141 webhooks\n 🔔\u0000 property_change: 35 events, 3 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 59 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 property_change: 21 events, 5 properties\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 70 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 16 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 3713 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n 📦\u0000 deal: 1822 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 1278 events, 0 properties\n 🔔\u0000 property_change: 526 events, 7 properties\n 📦\u0000 company: 556 webhooks\n 🔔\u0000 association_change: 451 events, 0 properties\n 🔔\u0000 property_change: 68 events, 3 properties\n 🔔\u0000 creation: 37 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 67 webhooks\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 31 webhooks\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 23 events, 7 properties\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 151 webhooks\n 📦\u0000 company: 35 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 deal: 1 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 4102 webhooks\n 📦\u0000 company: 1117 webhooks\n 🔔\u0000 creation: 92 events, 0 properties\n 🔔\u0000 association_change: 676 events, 0 properties\n 🔔\u0000 property_change: 349 events, 4 properties\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n 📦\u0000 deal: 61 webhooks\n 🔔\u0000 property_change: 49 events, 13 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 97 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 2244 webhooks\n 📦\u0000 company: 297 webhooks\n 🔔\u0000 property_change: 104 events, 3 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n 🔔\u0000 creation: 38 events, 0 properties\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n 📦\u0000 deal: 430 webhooks\n 🔔\u0000 property_change: 285 events, 6 properties\n 🔔\u0000 creation: 40 events, 0 properties\n 🔔\u0000 association_change: 105 events, 0 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 1274 webhooks\n 📦\u0000 deal: 86 webhooks\n 🔔\u0000 property_change: 69 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n 📦\u0000 company: 370 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 163 events, 6 properties\n 🔔\u0000 association_change: 174 events, 0 properties\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 344 webhooks\n 📦\u0000 deal: 82 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 70 events, 8 properties\n 📦\u0000 company: 89 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 34 events, 4 properties\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 174 webhooks\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 22 events, 5 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny#","depth":4,"value":"🏢\u0000 Config 908 (JPA Workspaces - 956) - 1223 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 3 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 company: 457 webhooks\n 🔔\u0000 property_change: 447 events, 2 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 740 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 property_change: 721 events, 9 properties\n\n🏢\u0000 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks\n 📦\u0000 company: 614 webhooks\n 🔔\u0000 property_change: 175 events, 6 properties\n 🔔\u0000 creation: 15 events, 0 properties\n 🔔\u0000 association_change: 424 events, 0 properties\n 📦\u0000 contact: 2499 webhooks\n 🔔\u0000 creation: 212 events, 0 properties\n 🔔\u0000 property_change: 1862 events, 9 properties\n 🔔\u0000 association_change: 425 events, 0 properties\n 📦\u0000 deal: 9 webhooks\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n\n🏢\u0000 Config 880 (Immutable - 931) - 7898 webhooks\n 📦\u0000 deal: 27 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 4 events, 2 properties\n 🔔\u0000 association_change: 21 events, 0 properties\n 📦\u0000 contact: 5587 webhooks\n 🔔\u0000 association_change: 1831 events, 0 properties\n 🔔\u0000 creation: 736 events, 0 properties\n 🔔\u0000 property_change: 3020 events, 9 properties\n 📦\u0000 company: 2284 webhooks\n 🔔\u0000 association_change: 1818 events, 0 properties\n 🔔\u0000 property_change: 308 events, 6 properties\n 🔔\u0000 creation: 158 events, 0 properties\n\n🏢\u0000 Config 877 (GroWrk Remote - 927) - 342 webhooks\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 property_change: 25 events, 6 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 deal: 151 webhooks\n 🔔\u0000 property_change: 82 events, 11 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 contact: 117 webhooks\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 property_change: 49 events, 8 properties\n 🔔\u0000 creation: 10 events, 0 properties\n\n🏢\u0000 Config 928 (Portless - 995) - 871 webhooks\n 📦\u0000 contact: 494 webhooks\n 🔔\u0000 property_change: 283 events, 9 properties\n 🔔\u0000 association_change: 182 events, 0 properties\n 🔔\u0000 creation: 29 events, 0 properties\n 📦\u0000 company: 299 webhooks\n 🔔\u0000 association_change: 188 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 93 events, 6 properties\n 📦\u0000 deal: 78 webhooks\n 🔔\u0000 property_change: 56 events, 9 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n\n🏢\u0000 Config 150 (Nudge Global Limited - 168) - 547 webhooks\n 📦\u0000 contact: 465 webhooks\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 430 events, 9 properties\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 3 properties\n 📦\u0000 deal: 42 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 25 events, 5 properties\n\n🏢\u0000 Config 583 (One Core Media - 608) - 99 webhooks\n 📦\u0000 company: 32 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 67 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 42 events, 8 properties\n\n🏢\u0000 Config 913 (Kyloe Partners - 456) - 463 webhooks\n 📦\u0000 company: 161 webhooks\n 🔔\u0000 association_change: 160 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 155 webhooks\n 🔔\u0000 property_change: 54 events, 9 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 147 webhooks\n 🔔\u0000 property_change: 69 events, 12 properties\n 🔔\u0000 association_change: 74 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 530 (InnoFund - 556) - 982 webhooks\n 📦\u0000 contact: 635 webhooks\n 🔔\u0000 association_change: 147 events, 0 properties\n 🔔\u0000 creation: 66 events, 0 properties\n 🔔\u0000 property_change: 422 events, 8 properties\n 📦\u0000 company: 329 webhooks\n 🔔\u0000 property_change: 130 events, 4 properties\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 45 events, 0 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 creation: 4 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 5 events, 2 properties\n\n🏢\u0000 Config 270 (Heka Happy - 288) - 134 webhooks\n 📦\u0000 company: 34 webhooks\n 🔔\u0000 property_change: 13 events, 5 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 contact: 95 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 property_change: 66 events, 9 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 5 properties\n\n🏢\u0000 Config 1058 (RoofMarketplace - 1095) - 869 webhooks\n 📦\u0000 contact: 502 webhooks\n 🔔\u0000 association_change: 59 events, 0 properties\n 🔔\u0000 property_change: 361 events, 8 properties\n 🔔\u0000 creation: 82 events, 0 properties\n 📦\u0000 deal: 266 webhooks\n 🔔\u0000 creation: 28 events, 0 properties\n 🔔\u0000 property_change: 153 events, 7 properties\n 🔔\u0000 association_change: 85 events, 0 properties\n 📦\u0000 company: 101 webhooks\n 🔔\u0000 association_change: 86 events, 0 properties\n 🔔\u0000 property_change: 11 events, 3 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 801 (Rise Vision - 852) - 1101 webhooks\n 📦\u0000 deal: 190 webhooks\n 🔔\u0000 association_change: 57 events, 0 properties\n 🔔\u0000 property_change: 117 events, 8 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 📦\u0000 company: 248 webhooks\n 🔔\u0000 association_change: 149 events, 0 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 property_change: 73 events, 5 properties\n 📦\u0000 contact: 663 webhooks\n 🔔\u0000 creation: 95 events, 0 properties\n 🔔\u0000 association_change: 150 events, 0 properties\n 🔔\u0000 property_change: 418 events, 9 properties\n\n🏢\u0000 Config 834 (AnyVan.com - 882) - 225415 webhooks\n 📦\u0000 company: 35595 webhooks\n 🔔\u0000 property_change: 5687 events, 3 properties\n 🔔\u0000 association_change: 25219 events, 0 properties\n 🔔\u0000 creation: 4689 events, 0 properties\n 📦\u0000 contact: 76739 webhooks\n 🔔\u0000 property_change: 54620 events, 9 properties\n 🔔\u0000 creation: 4471 events, 0 properties\n 🔔\u0000 association_change: 17648 events, 0 properties\n 📦\u0000 deal: 113081 webhooks\n 🔔\u0000 creation: 7588 events, 0 properties\n 🔔\u0000 property_change: 82720 events, 9 properties\n 🔔\u0000 association_change: 22773 events, 0 properties\n\n🏢\u0000 Config 878 (Dingus and Zazzy - 929) - 635 webhooks\n 📦\u0000 deal: 228 webhooks\n 🔔\u0000 property_change: 158 events, 9 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 52 events, 0 properties\n 📦\u0000 company: 142 webhooks\n 🔔\u0000 property_change: 59 events, 6 properties\n 🔔\u0000 association_change: 69 events, 0 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 📦\u0000 contact: 265 webhooks\n 🔔\u0000 property_change: 192 events, 8 properties\n 🔔\u0000 association_change: 53 events, 0 properties\n 🔔\u0000 creation: 20 events, 0 properties\n\n🏢\u0000 Config 671 (CosmosID - 691) - 374 webhooks\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 118 webhooks\n 🔔\u0000 property_change: 78 events, 10 properties\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 creation: 10 events, 0 properties\n 📦\u0000 contact: 192 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n\n🏢\u0000 Config 652 (Abode - 673) - 83 webhooks\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 📦\u0000 contact: 55 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 40 events, 9 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 deal: 17 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 13 events, 6 properties\n\n🏢\u0000 Config 1049 (Classavo - 851) - 24 webhooks\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 contact: 4 webhooks\n 🔔\u0000 association_change: 1 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 290 (D1 Training - 308) - 898 webhooks\n 📦\u0000 company: 12 webhooks\n 🔔\u0000 property_change: 5 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 📦\u0000 deal: 480 webhooks\n 🔔\u0000 association_change: 40 events, 0 properties\n 🔔\u0000 creation: 35 events, 0 properties\n 🔔\u0000 property_change: 405 events, 8 properties\n 📦\u0000 contact: 406 webhooks\n 🔔\u0000 creation: 50 events, 0 properties\n 🔔\u0000 property_change: 314 events, 7 properties\n 🔔\u0000 association_change: 42 events, 0 properties\n\n🏢\u0000 Config 1019 (SimpleConsign - 1088) - 5388 webhooks\n 📦\u0000 contact: 3686 webhooks\n 🔔\u0000 association_change: 692 events, 0 properties\n 🔔\u0000 property_change: 2659 events, 9 properties\n 🔔\u0000 creation: 335 events, 0 properties\n 📦\u0000 company: 1647 webhooks\n 🔔\u0000 association_change: 698 events, 0 properties\n 🔔\u0000 property_change: 637 events, 6 properties\n 🔔\u0000 creation: 312 events, 0 properties\n 📦\u0000 deal: 55 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 311 (Lemon.io - 329) - 1231 webhooks\n 📦\u0000 company: 274 webhooks\n 🔔\u0000 property_change: 128 events, 6 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 120 events, 0 properties\n 📦\u0000 deal: 464 webhooks\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 385 events, 23 properties\n 🔔\u0000 association_change: 63 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 property_change: 336 events, 9 properties\n 🔔\u0000 association_change: 103 events, 0 properties\n 🔔\u0000 creation: 54 events, 0 properties\n\n🏢\u0000 Config 802 (Street Group - 853) - 3864 webhooks\n 📦\u0000 contact: 2640 webhooks\n 🔔\u0000 creation: 252 events, 0 properties\n 🔔\u0000 association_change: 558 events, 0 properties\n 🔔\u0000 property_change: 1830 events, 9 properties\n 📦\u0000 company: 742 webhooks\n 🔔\u0000 association_change: 617 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 🔔\u0000 property_change: 94 events, 6 properties\n 📦\u0000 deal: 482 webhooks\n 🔔\u0000 association_change: 121 events, 0 properties\n 🔔\u0000 property_change: 338 events, 11 properties\n 🔔\u0000 creation: 23 events, 0 properties\n\n🏢\u0000 Config 1053 (Sensi.AI - 1117) - 8574 webhooks\n 📦\u0000 company: 1694 webhooks\n 🔔\u0000 property_change: 156 events, 6 properties\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 1499 events, 0 properties\n 📦\u0000 deal: 663 webhooks\n 🔔\u0000 property_change: 491 events, 15 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 74 events, 0 properties\n 📦\u0000 contact: 6217 webhooks\n 🔔\u0000 association_change: 1577 events, 0 properties\n 🔔\u0000 property_change: 3768 events, 9 properties\n 🔔\u0000 creation: 872 events, 0 properties\n\n🏢\u0000 Config 87 (Repsly - 93) - 2108 webhooks\n 📦\u0000 contact: 1739 webhooks\n 🔔\u0000 association_change: 295 events, 0 properties\n 🔔\u0000 property_change: 1285 events, 9 properties\n 🔔\u0000 creation: 159 events, 0 properties\n 📦\u0000 deal: 39 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 13 events, 0 properties\n 🔔\u0000 property_change: 23 events, 6 properties\n 📦\u0000 company: 330 webhooks\n 🔔\u0000 association_change: 298 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 518 (Prolific - 544) - 9399 webhooks\n 📦\u0000 deal: 26 webhooks\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 8416 webhooks\n 🔔\u0000 creation: 534 events, 0 properties\n 🔔\u0000 property_change: 7533 events, 8 properties\n 🔔\u0000 association_change: 349 events, 0 properties\n 📦\u0000 company: 957 webhooks\n 🔔\u0000 creation: 30 events, 0 properties\n 🔔\u0000 association_change: 352 events, 0 properties\n 🔔\u0000 property_change: 575 events, 6 properties\n\n🏢\u0000 Config 761 (Ressio Software - 770) - 4387 webhooks\n 📦\u0000 company: 2012 webhooks\n 🔔\u0000 property_change: 1370 events, 6 properties\n 🔔\u0000 creation: 207 events, 0 properties\n 🔔\u0000 association_change: 435 events, 0 properties\n 📦\u0000 contact: 2120 webhooks\n 🔔\u0000 property_change: 1582 events, 9 properties\n 🔔\u0000 creation: 152 events, 0 properties\n 🔔\u0000 association_change: 386 events, 0 properties\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 property_change: 119 events, 5 properties\n 🔔\u0000 creation: 17 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 537 (Mobiz - 563) - 874 webhooks\n 📦\u0000 contact: 805 webhooks\n 🔔\u0000 creation: 19 events, 0 properties\n 🔔\u0000 property_change: 751 events, 9 properties\n 🔔\u0000 association_change: 35 events, 0 properties\n 📦\u0000 company: 64 webhooks\n 🔔\u0000 association_change: 36 events, 0 properties\n 🔔\u0000 property_change: 24 events, 6 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks\n 📦\u0000 contact: 491 webhooks\n 🔔\u0000 association_change: 107 events, 0 properties\n 🔔\u0000 property_change: 352 events, 9 properties\n 🔔\u0000 creation: 32 events, 0 properties\n 📦\u0000 deal: 280 webhooks\n 🔔\u0000 property_change: 225 events, 11 properties\n 🔔\u0000 creation: 14 events, 0 properties\n 🔔\u0000 association_change: 41 events, 0 properties\n 📦\u0000 company: 173 webhooks\n 🔔\u0000 property_change: 34 events, 3 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 130 events, 0 properties\n\n🏢\u0000 Config 581 (Penfold - 606) - 1191 webhooks\n 📦\u0000 contact: 852 webhooks\n 🔔\u0000 association_change: 161 events, 0 properties\n 🔔\u0000 creation: 117 events, 0 properties\n 🔔\u0000 property_change: 574 events, 9 properties\n 📦\u0000 company: 266 webhooks\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 78 events, 6 properties\n 🔔\u0000 association_change: 167 events, 0 properties\n 📦\u0000 deal: 73 webhooks\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 49 events, 7 properties\n\n🏢\u0000 Config 1015 (Travefy - 1049) - 4021 webhooks\n 📦\u0000 contact: 1629 webhooks\n 🔔\u0000 property_change: 1064 events, 9 properties\n 🔔\u0000 creation: 154 events, 0 properties\n 🔔\u0000 association_change: 411 events, 0 properties\n 📦\u0000 deal: 1468 webhooks\n 🔔\u0000 property_change: 1072 events, 10 properties\n 🔔\u0000 creation: 99 events, 0 properties\n 🔔\u0000 association_change: 297 events, 0 properties\n 📦\u0000 company: 924 webhooks\n 🔔\u0000 creation: 151 events, 0 properties\n 🔔\u0000 association_change: 510 events, 0 properties\n 🔔\u0000 property_change: 263 events, 2 properties\n\n🏢\u0000 Config 413 (VCC - 347) - 56 webhooks\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 10 events, 5 properties\n 🔔\u0000 association_change: 1 events, 0 properties\n 📦\u0000 contact: 15 webhooks\n 🔔\u0000 property_change: 12 events, 9 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 30 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 18 events, 2 properties\n 🔔\u0000 creation: 9 events, 0 properties\n\n🏢\u0000 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks\n 📦\u0000 company: 160 webhooks\n 🔔\u0000 property_change: 30 events, 3 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 34 webhooks\n 🔔\u0000 property_change: 34 events, 6 properties\n 📦\u0000 contact: 467 webhooks\n 🔔\u0000 creation: 39 events, 0 properties\n 🔔\u0000 association_change: 122 events, 0 properties\n 🔔\u0000 property_change: 306 events, 8 properties\n\n🏢\u0000 Config 1031 (CUCollaborate - 1096) - 243 webhooks\n 📦\u0000 contact: 133 webhooks\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 100 events, 9 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 📦\u0000 deal: 68 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 🔔\u0000 property_change: 47 events, 9 properties\n 📦\u0000 company: 42 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 12 events, 6 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 1025 (Predictiv - 1092) - 39 webhooks\n 📦\u0000 company: 13 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 property_change: 17 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1051 (IndySoft - 1115) - 163 webhooks\n 📦\u0000 company: 41 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 29 events, 0 properties\n 🔔\u0000 property_change: 11 events, 6 properties\n 📦\u0000 deal: 21 webhooks\n 🔔\u0000 property_change: 17 events, 6 properties\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 contact: 101 webhooks\n 🔔\u0000 property_change: 64 events, 8 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 28 events, 0 properties\n\n🏢\u0000 Config 966 (Crowdcube Ltd - 263) - 580 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 12 events, 0 properties\n 🔔\u0000 property_change: 204 events, 7 properties\n 🔔\u0000 association_change: 39 events, 0 properties\n 📦\u0000 contact: 193 webhooks\n 🔔\u0000 property_change: 126 events, 9 properties\n 🔔\u0000 creation: 22 events, 0 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 132 webhooks\n 🔔\u0000 property_change: 61 events, 6 properties\n 🔔\u0000 association_change: 58 events, 0 properties\n 🔔\u0000 creation: 13 events, 0 properties\n\n🏢\u0000 Config 300 (Prowly - 318) - 430 webhooks\n 📦\u0000 company: 102 webhooks\n 🔔\u0000 creation: 10 events, 0 properties\n 🔔\u0000 association_change: 66 events, 0 properties\n 🔔\u0000 property_change: 26 events, 6 properties\n 📦\u0000 contact: 202 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 association_change: 55 events, 0 properties\n 🔔\u0000 property_change: 114 events, 8 properties\n 📦\u0000 deal: 126 webhooks\n 🔔\u0000 property_change: 80 events, 9 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 association_change: 37 events, 0 properties\n\n🏢\u0000 Config 265 (Orbital - 283) - 3300 webhooks\n 📦\u0000 deal: 255 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 207 events, 10 properties\n 🔔\u0000 association_change: 45 events, 0 properties\n 📦\u0000 company: 921 webhooks\n 🔔\u0000 property_change: 48 events, 6 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 862 events, 0 properties\n 📦\u0000 contact: 2124 webhooks\n 🔔\u0000 property_change: 1151 events, 9 properties\n 🔔\u0000 creation: 134 events, 0 properties\n 🔔\u0000 association_change: 839 events, 0 properties\n\n🏢\u0000 Config 104 (Just Eat for Business - 111) - 1138 webhooks\n 📦\u0000 company: 141 webhooks\n 🔔\u0000 property_change: 35 events, 3 properties\n 🔔\u0000 association_change: 98 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 📦\u0000 deal: 59 webhooks\n 🔔\u0000 creation: 11 events, 0 properties\n 🔔\u0000 association_change: 27 events, 0 properties\n 🔔\u0000 property_change: 21 events, 5 properties\n 📦\u0000 contact: 938 webhooks\n 🔔\u0000 property_change: 797 events, 9 properties\n 🔔\u0000 creation: 52 events, 0 properties\n 🔔\u0000 association_change: 89 events, 0 properties\n\n🏢\u0000 Config 1062 (Sigma Labs - 1124) - 70 webhooks\n 📦\u0000 contact: 54 webhooks\n 🔔\u0000 property_change: 38 events, 9 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 16 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 🔔\u0000 association_change: 10 events, 0 properties\n\n🏢\u0000 Config 949 (Truvi - 1023) - 3713 webhooks\n 📦\u0000 contact: 1335 webhooks\n 🔔\u0000 association_change: 967 events, 0 properties\n 🔔\u0000 property_change: 287 events, 9 properties\n 🔔\u0000 creation: 81 events, 0 properties\n 📦\u0000 deal: 1822 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 association_change: 1278 events, 0 properties\n 🔔\u0000 property_change: 526 events, 7 properties\n 📦\u0000 company: 556 webhooks\n 🔔\u0000 association_change: 451 events, 0 properties\n 🔔\u0000 property_change: 68 events, 3 properties\n 🔔\u0000 creation: 37 events, 0 properties\n\n🏢\u0000 Config 945 (Shinydocs - 1019) - 67 webhooks\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 31 webhooks\n 🔔\u0000 association_change: 7 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 23 events, 7 properties\n 📦\u0000 contact: 28 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 14 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 959 (Voyager - 1031) - 151 webhooks\n 📦\u0000 company: 35 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 8 events, 4 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 deal: 1 webhooks\n 🔔\u0000 property_change: 1 events, 1 properties\n 📦\u0000 contact: 115 webhooks\n 🔔\u0000 property_change: 82 events, 9 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 11 events, 0 properties\n\n🏢\u0000 Config 1045 (Cove - 1110) - 4102 webhooks\n 📦\u0000 company: 1117 webhooks\n 🔔\u0000 creation: 92 events, 0 properties\n 🔔\u0000 association_change: 676 events, 0 properties\n 🔔\u0000 property_change: 349 events, 4 properties\n 📦\u0000 contact: 2924 webhooks\n 🔔\u0000 property_change: 2007 events, 8 properties\n 🔔\u0000 creation: 244 events, 0 properties\n 🔔\u0000 association_change: 673 events, 0 properties\n 📦\u0000 deal: 61 webhooks\n 🔔\u0000 property_change: 49 events, 13 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n\n🏢\u0000 Config 1065 (Integrum ESG - 1126) - 97 webhooks\n 📦\u0000 contact: 69 webhooks\n 🔔\u0000 property_change: 48 events, 7 properties\n 🔔\u0000 association_change: 18 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 8 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 📦\u0000 deal: 20 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 3 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n\n🏢\u0000 Config 680 (The Family Office Company - 700) - 2 webhooks\n 📦\u0000 contact: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 550 (SeedLegals - 576) - 2244 webhooks\n 📦\u0000 company: 297 webhooks\n 🔔\u0000 property_change: 104 events, 3 properties\n 🔔\u0000 association_change: 155 events, 0 properties\n 🔔\u0000 creation: 38 events, 0 properties\n 📦\u0000 contact: 1517 webhooks\n 🔔\u0000 creation: 251 events, 0 properties\n 🔔\u0000 association_change: 156 events, 0 properties\n 🔔\u0000 property_change: 1110 events, 8 properties\n 📦\u0000 deal: 430 webhooks\n 🔔\u0000 property_change: 285 events, 6 properties\n 🔔\u0000 creation: 40 events, 0 properties\n 🔔\u0000 association_change: 105 events, 0 properties\n\n🏢\u0000 Config 339 (Rosterfy - 359) - 1274 webhooks\n 📦\u0000 deal: 86 webhooks\n 🔔\u0000 property_change: 69 events, 8 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 14 events, 0 properties\n 📦\u0000 company: 370 webhooks\n 🔔\u0000 creation: 33 events, 0 properties\n 🔔\u0000 property_change: 163 events, 6 properties\n 🔔\u0000 association_change: 174 events, 0 properties\n 📦\u0000 contact: 818 webhooks\n 🔔\u0000 association_change: 176 events, 0 properties\n 🔔\u0000 creation: 93 events, 0 properties\n 🔔\u0000 property_change: 549 events, 9 properties\n\n🏢\u0000 Config 822 (NatureMetrics - 871) - 344 webhooks\n 📦\u0000 deal: 82 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 70 events, 8 properties\n 📦\u0000 company: 89 webhooks\n 🔔\u0000 association_change: 46 events, 0 properties\n 🔔\u0000 creation: 9 events, 0 properties\n 🔔\u0000 property_change: 34 events, 4 properties\n 📦\u0000 contact: 173 webhooks\n 🔔\u0000 property_change: 111 events, 9 properties\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 19 events, 0 properties\n\n🏢\u0000 Config 400 (Dögel GmbH - 439) - 174 webhooks\n 📦\u0000 company: 40 webhooks\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 22 events, 5 properties\n 🔔\u0000 association_change: 16 events, 0 properties\n 📦\u0000 contact: 116 webhooks\n 🔔\u0000 association_change: 15 events, 0 properties\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 94 events, 9 properties\n 📦\u0000 deal: 18 webhooks\n 🔔\u0000 association_change: 3 events, 0 properties\n 🔔\u0000 property_change: 14 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n\n🏢\u0000 Config 738 (Locad - 756) - 335 webhooks\n 📦\u0000 contact: 204 webhooks\n 🔔\u0000 association_change: 43 events, 0 properties\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 143 events, 9 properties\n 📦\u0000 deal: 47 webhooks\n 🔔\u0000 property_change: 27 events, 6 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 association_change: 15 events, 0 properties\n 📦\u0000 company: 84 webhooks\n 🔔\u0000 creation: 13 events, 0 properties\n 🔔\u0000 association_change: 48 events, 0 properties\n 🔔\u0000 property_change: 23 events, 5 properties\n\n🏢\u0000 Config 166 (CloverDX - 184) - 196 webhooks\n 📦\u0000 contact: 71 webhooks\n 🔔\u0000 creation: 7 events, 0 properties\n 🔔\u0000 property_change: 42 events, 7 properties\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 company: 49 webhooks\n 🔔\u0000 association_change: 30 events, 0 properties\n 🔔\u0000 property_change: 16 events, 5 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 deal: 76 webhooks\n 🔔\u0000 property_change: 48 events, 8 properties\n 🔔\u0000 association_change: 24 events, 0 properties\n 🔔\u0000 creation: 4 events, 0 properties\n\n🏢\u0000 Config 605 (Encord - 630) - 233643 webhooks\n 📦\u0000 contact: 127737 webhooks\n 🔔\u0000 property_change: 23696 events, 9 properties\n 🔔\u0000 creation: 530 events, 0 properties\n 🔔\u0000 association_change: 103511 events, 0 properties\n 📦\u0000 company: 105130 webhooks\n 🔔\u0000 property_change: 766 events, 7 properties\n 🔔\u0000 association_change: 104172 events, 0 properties\n 🔔\u0000 creation: 192 events, 0 properties\n 📦\u0000 deal: 776 webhooks\n 🔔\u0000 property_change: 112 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 663 events, 0 properties\n\n🏢\u0000 Config 884 (Eulerity - 935) - 144 webhooks\n 📦\u0000 company: 22 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 📦\u0000 contact: 120 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 property_change: 87 events, 9 properties\n 🔔\u0000 creation: 11 events, 0 properties\n 📦\u0000 deal: 2 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n\n🏢\u0000 Config 851 (Azion Technologies - 902) - 2856 webhooks\n 📦\u0000 deal: 1209 webhooks\n 🔔\u0000 association_change: 185 events, 0 properties\n 🔔\u0000 property_change: 976 events, 40 properties\n 🔔\u0000 creation: 48 events, 0 properties\n 📦\u0000 company: 321 webhooks\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 47 events, 6 properties\n 🔔\u0000 association_change: 268 events, 0 properties\n 📦\u0000 contact: 1326 webhooks\n 🔔\u0000 association_change: 257 events, 0 properties\n 🔔\u0000 creation: 69 events, 0 properties\n 🔔\u0000 property_change: 1000 events, 9 properties\n\n🏢\u0000 Config 326 (Prairie Robotics - 344) - 148 webhooks\n 📦\u0000 contact: 89 webhooks\n 🔔\u0000 association_change: 44 events, 0 properties\n 🔔\u0000 property_change: 40 events, 8 properties\n 🔔\u0000 creation: 5 events, 0 properties\n 📦\u0000 company: 54 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 property_change: 7 events, 4 properties\n 🔔\u0000 association_change: 44 events, 0 properties\n 📦\u0000 deal: 5 webhooks\n 🔔\u0000 property_change: 5 events, 3 properties\n\n🏢\u0000 Config 1037 (Jibble - 1102) - 8634 webhooks\n 📦\u0000 company: 1607 webhooks\n 🔔\u0000 association_change: 562 events, 0 properties\n 🔔\u0000 property_change: 845 events, 5 properties\n 🔔\u0000 creation: 200 events, 0 properties\n 📦\u0000 contact: 6719 webhooks\n 🔔\u0000 creation: 895 events, 0 properties\n 🔔\u0000 property_change: 5248 events, 8 properties\n 🔔\u0000 association_change: 576 events, 0 properties\n 📦\u0000 deal: 308 webhooks\n 🔔\u0000 association_change: 62 events, 0 properties\n 🔔\u0000 property_change: 214 events, 20 properties\n 🔔\u0000 creation: 32 events, 0 properties\n\n🏢\u0000 Config 389 (CommQuotes - 426) - 28 webhooks\n 📦\u0000 company: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 1 events, 1 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 📦\u0000 contact: 22 webhooks\n 🔔\u0000 property_change: 16 events, 7 properties\n 🔔\u0000 association_change: 4 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 649 (Eventeny - 670) - 6567 webhooks\n 📦\u0000 contact: 5321 webhooks\n 🔔\u0000 property_change: 3480 events, 8 properties\n 🔔\u0000 association_change: 560 events, 0 properties\n 🔔\u0000 creation: 1281 events, 0 properties\n 📦\u0000 deal: 226 webhooks\n 🔔\u0000 association_change: 10 events, 0 properties\n 🔔\u0000 property_change: 213 events, 7 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 📦\u0000 company: 1020 webhooks\n 🔔\u0000 property_change: 325 events, 6 properties\n 🔔\u0000 association_change: 564 events, 0 properties\n 🔔\u0000 creation: 131 events, 0 properties\n\n🏢\u0000 Config 684 (The-Kitchens - 703) - 746 webhooks\n 📦\u0000 deal: 35 webhooks\n 🔔\u0000 property_change: 23 events, 11 properties\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 📦\u0000 contact: 493 webhooks\n 🔔\u0000 association_change: 116 events, 0 properties\n 🔔\u0000 creation: 73 events, 0 properties\n 🔔\u0000 property_change: 304 events, 9 properties\n 📦\u0000 company: 218 webhooks\n 🔔\u0000 property_change: 56 events, 5 properties\n 🔔\u0000 creation: 43 events, 0 properties\n 🔔\u0000 association_change: 119 events, 0 properties\n\n🏢\u0000 Config 1064 (AdSearch - 1106) - 23 webhooks\n 📦\u0000 contact: 19 webhooks\n 🔔\u0000 property_change: 15 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 📦\u0000 company: 4 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks\n 📦\u0000 contact: 9 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 6 events, 6 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 867 (Octopus Money - 916) - 440 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 6 properties\n 📦\u0000 contact: 317 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 219 events, 9 properties\n 🔔\u0000 creation: 23 events, 0 properties\n 📦\u0000 company: 113 webhooks\n 🔔\u0000 association_change: 75 events, 0 properties\n 🔔\u0000 property_change: 32 events, 6 properties\n 🔔\u0000 creation: 6 events, 0 properties\n\n🏢\u0000 Config 987 (NetVendor - 1056) - 542 webhooks\n 📦\u0000 contact: 310 webhooks\n 🔔\u0000 property_change: 218 events, 8 properties\n 🔔\u0000 association_change: 61 events, 0 properties\n 🔔\u0000 creation: 31 events, 0 properties\n 📦\u0000 company: 169 webhooks\n 🔔\u0000 creation: 25 events, 0 properties\n 🔔\u0000 property_change: 79 events, 5 properties\n 🔔\u0000 association_change: 65 events, 0 properties\n 📦\u0000 deal: 63 webhooks\n 🔔\u0000 association_change: 8 events, 0 properties\n 🔔\u0000 property_change: 53 events, 8 properties\n 🔔\u0000 creation: 2 events, 0 properties\n\n🏢\u0000 Config 962 (evergrowth.io - 1034) - 3433 webhooks\n 📦\u0000 contact: 425 webhooks\n 🔔\u0000 association_change: 19 events, 0 properties\n 🔔\u0000 creation: 8 events, 0 properties\n 🔔\u0000 property_change: 398 events, 8 properties\n 📦\u0000 deal: 2898 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 2886 events, 2 properties\n 📦\u0000 company: 110 webhooks\n 🔔\u0000 association_change: 22 events, 0 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 🔔\u0000 property_change: 82 events, 3 properties\n\n🏢\u0000 Config 762 (Localize - 562) - 421 webhooks\n 📦\u0000 contact: 248 webhooks\n 🔔\u0000 property_change: 145 events, 8 properties\n 🔔\u0000 creation: 26 events, 0 properties\n 🔔\u0000 association_change: 77 events, 0 properties\n 📦\u0000 company: 162 webhooks\n 🔔\u0000 association_change: 77 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n 🔔\u0000 property_change: 69 events, 6 properties\n 📦\u0000 deal: 11 webhooks\n 🔔\u0000 property_change: 11 events, 1 properties\n\n🏢\u0000 Config 1057 (FlourishDx - 1120) - 39 webhooks\n 📦\u0000 deal: 10 webhooks\n 🔔\u0000 property_change: 10 events, 3 properties\n 📦\u0000 contact: 26 webhooks\n 🔔\u0000 property_change: 26 events, 7 properties\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 1 properties\n\n🏢\u0000 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks\n 📦\u0000 contact: 2311 webhooks\n 🔔\u0000 creation: 18 events, 0 properties\n 🔔\u0000 property_change: 2261 events, 8 properties\n 🔔\u0000 association_change: 32 events, 0 properties\n 📦\u0000 company: 74 webhooks\n 🔔\u0000 creation: 3 events, 0 properties\n 🔔\u0000 association_change: 34 events, 0 properties\n 🔔\u0000 property_change: 37 events, 5 properties\n 📦\u0000 deal: 23 webhooks\n 🔔\u0000 association_change: 6 events, 0 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 🔔\u0000 property_change: 15 events, 4 properties\n\n🏢\u0000 Config 617 (PCS - 641) - 4697 webhooks\n 📦\u0000 deal: 504 webhooks\n 🔔\u0000 association_change: 154 events, 0 properties\n 🔔\u0000 creation: 21 events, 0 properties\n 🔔\u0000 property_change: 329 events, 9 properties\n 📦\u0000 company: 1746 webhooks\n 🔔\u0000 association_change: 1698 events, 0 properties\n 🔔\u0000 property_change: 44 events, 5 properties\n 🔔\u0000 creation: 4 events, 0 properties\n 📦\u0000 contact: 2447 webhooks\n 🔔\u0000 property_change: 833 events, 8 properties\n 🔔\u0000 association_change: 1598 events, 0 properties\n 🔔\u0000 creation: 16 events, 0 properties\n\n🏢\u0000 Config 941 (Papirfly - 1013) - 2973 webhooks\n 📦\u0000 contact: 2050 webhooks\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 1344 events, 9 properties\n 🔔\u0000 creation: 187 events, 0 properties\n 📦\u0000 deal: 95 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 94 events, 10 properties\n 📦\u0000 company: 828 webhooks\n 🔔\u0000 creation: 51 events, 0 properties\n 🔔\u0000 association_change: 519 events, 0 properties\n 🔔\u0000 property_change: 258 events, 6 properties\n\n🏢\u0000 Config 734 (Codelink - 742) - 13 webhooks\n 📦\u0000 contact: 8 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 property_change: 5 events, 5 properties\n 📦\u0000 company: 5 webhooks\n 🔔\u0000 property_change: 2 events, 2 properties\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 1011 (impactsuite.com - 1081) - 85 webhooks\n 📦\u0000 deal: 33 webhooks\n 🔔\u0000 association_change: 11 events, 0 properties\n 🔔\u0000 property_change: 20 events, 7 properties\n 🔔\u0000 creation: 2 events, 0 properties\n 📦\u0000 contact: 41 webhooks\n 🔔\u0000 association_change: 9 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n 🔔\u0000 creation: 6 events, 0 properties\n 📦\u0000 company: 11 webhooks\n 🔔\u0000 property_change: 5 events, 1 properties\n 🔔\u0000 association_change: 6 events, 0 properties\n\n🏢\u0000 Config 946 (Scrivnr - 1020) - 8 webhooks\n 📦\u0000 contact: 6 webhooks\n 🔔\u0000 creation: 1 events, 0 properties\n 🔔\u0000 association_change: 2 events, 0 properties\n 🔔\u0000 property_change: 3 events, 3 properties\n 📦\u0000 company: 2 webhooks\n 🔔\u0000 association_change: 2 events, 0 properties\n\n🏢\u0000 Config 905 (Contractbook Aps - 224) - 3 webhooks\n 📦\u0000 company: 3 webhooks\n 🔔\u0000 property_change: 3 events, 3 properties\n\n🏢\u0000 Config 763 (GivePanel - 778) - 6 webhooks\n 📦\u0000 deal: 6 webhooks\n 🔔\u0000 property_change: 6 events, 1 properties\n\n🏢\u0000 Config 809 (Sway Me Good - 859) - 31 webhooks\n 📦\u0000 contact: 31 webhooks\n 🔔\u0000 creation: 5 events, 0 properties\n 🔔\u0000 property_change: 26 events, 7 properties\n\nroot@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook \nHubSpot Webhook Service Command\n\nAvailable actions:\n redis — Scan, view, and optionally delete batch_sync Redis keys\n metrics — View or clear webhook metrics (use -D for stats)\n memory — Analyze memory usage across all key types\n monitor — Monitor batch sizes and detect issues\n cleanup — Clean up critical batches and oversized keys\n\nCommon options:\n -C, --config=N Filter by CRM config ID (⚡\u0000 much faster)\n -T, --team=N Filter by Team ID (works with redis & metrics)\n -O, --object=TYPE Filter by object type (deal|contact|company)\n -E, --event=TYPE Filter by event type (property|association|1|2)\n -K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)\n --sort=OPTION Sort redis keys: count|team|config (default: count)\n --date=YYYY-MM-DD Operate on specific date (end date for ranges)\n --from=YYYY-MM-DD Start date for multi-day ranges\n --del Delete matched keys or clear metrics\n --dry-run Show what would be deleted\n -D, --detailed Show detailed stats (metrics: includes top properties, averages)\n --format=FORMAT Output format: table|json (default: table)\n --force Skip confirmation\n --threshold=N Size threshold for monitoring (default: 100000)\n --watch Continuous monitoring mode\n --interval=N Watch interval in seconds (default: 5)\n --exclude-metrics Exclude metrics keys from redis scan\n\nExamples:\n\n # Redis key operations\n php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)\n php artisan crm:hubspot-webhook redis -C 2 # ⚡\u0000 Fast: only config 2 (shorthand)\n php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)\n php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)\n php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name\n php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID\n php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID\n php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)\n php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details\n php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del\n php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics\n\n # Analysis & monitoring\n php artisan crm:hubspot-webhook memory\n php artisan crm:hubspot-webhook monitor --threshold=50000 --watch\n php artisan crm:hubspot-webhook cleanup --dry-run\n\n # Metrics operations\n php artisan crm:hubspot-webhook metrics # Today's summary (default)\n php artisan crm:hubspot-webhook metrics -D # Detailed view\n php artisan crm:hubspot-webhook metrics -C 2 # Specific config\n php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks\n php artisan crm:hubspot-webhook metrics -E property # Only property_change events\n php artisan crm:hubspot-webhook metrics --date=2024-01-15\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter\n php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats\n php artisan crm:hubspot-webhook metrics --format=json # JSON output\nroot@06333eebc685:/home/jiminny#","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.12291667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.12708333,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.24583334,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.25,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"✳ Build full day activity summary from Screenpipe (claude)","depth":2,"bounds":{"left":0.36875,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.37291667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.49166667,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.49583334,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.6145833,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.61875,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.7375,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.7416667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"ec2-user@ip-10-30-159-186:~ (nc)","depth":2,"bounds":{"left":0.86041665,"top":0.05888889,"width":0.12291667,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.8645833,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.9548611,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"ec2-user@ip-10-30-159-186:~","depth":1,"bounds":{"left":0.42847222,"top":0.033333335,"width":0.14305556,"height":0.017777778},"role_description":"text"}]...
|
-6332822914128299075
|
-5421059355094964400
|
visual_change
|
accessibility
|
NULL
|
🏢 Config 908 (JPA Workspaces - 956) - 1223 webhoo 🏢 Config 908 (JPA Workspaces - 956) - 1223 webhooks
📦 deal: 26 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 14 events, 3 properties
🔔 association_change: 9 events, 0 properties
📦 company: 457 webhooks
🔔 property_change: 447 events, 2 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 740 webhooks
🔔 creation: 12 events, 0 properties
🔔 association_change: 7 events, 0 properties
🔔 property_change: 721 events, 9 properties
🏢 Config 171 (GaggleAMP Inc. - 189) - 3122 webhooks
📦 company: 614 webhooks
🔔 property_change: 175 events, 6 properties
🔔 creation: 15 events, 0 properties
🔔 association_change: 424 events, 0 properties
📦 contact: 2499 webhooks
🔔 creation: 212 events, 0 properties
🔔 property_change: 1862 events, 9 properties
🔔 association_change: 425 events, 0 properties
📦 deal: 9 webhooks
🔔 property_change: 8 events, 4 properties
🔔 association_change: 1 events, 0 properties
🏢 Config 880 (Immutable - 931) - 7898 webhooks
📦 deal: 27 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 4 events, 2 properties
🔔 association_change: 21 events, 0 properties
📦 contact: 5587 webhooks
🔔 association_change: 1831 events, 0 properties
🔔 creation: 736 events, 0 properties
🔔 property_change: 3020 events, 9 properties
📦 company: 2284 webhooks
🔔 association_change: 1818 events, 0 properties
🔔 property_change: 308 events, 6 properties
🔔 creation: 158 events, 0 properties
🏢 Config 877 (GroWrk Remote - 927) - 342 webhooks
📦 company: 74 webhooks
🔔 property_change: 25 events, 6 properties
🔔 association_change: 44 events, 0 properties
🔔 creation: 5 events, 0 properties
📦 deal: 151 webhooks
🔔 property_change: 82 events, 11 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 11 events, 0 properties
📦 contact: 117 webhooks
🔔 association_change: 58 events, 0 properties
🔔 property_change: 49 events, 8 properties
🔔 creation: 10 events, 0 properties
🏢 Config 928 (Portless - 995) - 871 webhooks
📦 contact: 494 webhooks
🔔 property_change: 283 events, 9 properties
🔔 association_change: 182 events, 0 properties
🔔 creation: 29 events, 0 properties
📦 company: 299 webhooks
🔔 association_change: 188 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 93 events, 6 properties
📦 deal: 78 webhooks
🔔 property_change: 56 events, 9 properties
🔔 creation: 4 events, 0 properties
🔔 association_change: 18 events, 0 properties
🏢 Config 150 (Nudge Global Limited - 168) - 547 webhooks
📦 contact: 465 webhooks
🔔 association_change: 27 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 430 events, 9 properties
📦 company: 40 webhooks
🔔 association_change: 30 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 3 properties
📦 deal: 42 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 25 events, 5 properties
🏢 Config 583 (One Core Media - 608) - 99 webhooks
📦 company: 32 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 67 webhooks
🔔 creation: 9 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 42 events, 8 properties
🏢 Config 913 (Kyloe Partners - 456) - 463 webhooks
📦 company: 161 webhooks
🔔 association_change: 160 events, 0 properties
🔔 property_change: 1 events, 1 properties
📦 contact: 155 webhooks
🔔 property_change: 54 events, 9 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 deal: 147 webhooks
🔔 property_change: 69 events, 12 properties
🔔 association_change: 74 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 530 (InnoFund - 556) - 982 webhooks
📦 contact: 635 webhooks
🔔 association_change: 147 events, 0 properties
🔔 creation: 66 events, 0 properties
🔔 property_change: 422 events, 8 properties
📦 company: 329 webhooks
🔔 property_change: 130 events, 4 properties
🔔 association_change: 154 events, 0 properties
🔔 creation: 45 events, 0 properties
📦 deal: 18 webhooks
🔔 creation: 4 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 5 events, 2 properties
🏢 Config 270 (Heka Happy - 288) - 134 webhooks
📦 company: 34 webhooks
🔔 property_change: 13 events, 5 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 contact: 95 webhooks
🔔 creation: 11 events, 0 properties
🔔 property_change: 66 events, 9 properties
🔔 association_change: 18 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 5 properties
🏢 Config 1058 (RoofMarketplace - 1095) - 869 webhooks
📦 contact: 502 webhooks
🔔 association_change: 59 events, 0 properties
🔔 property_change: 361 events, 8 properties
🔔 creation: 82 events, 0 properties
📦 deal: 266 webhooks
🔔 creation: 28 events, 0 properties
🔔 property_change: 153 events, 7 properties
🔔 association_change: 85 events, 0 properties
📦 company: 101 webhooks
🔔 association_change: 86 events, 0 properties
🔔 property_change: 11 events, 3 properties
🔔 creation: 4 events, 0 properties
🏢 Config 801 (Rise Vision - 852) - 1101 webhooks
📦 deal: 190 webhooks
🔔 association_change: 57 events, 0 properties
🔔 property_change: 117 events, 8 properties
🔔 creation: 16 events, 0 properties
📦 company: 248 webhooks
🔔 association_change: 149 events, 0 properties
🔔 creation: 26 events, 0 properties
🔔 property_change: 73 events, 5 properties
📦 contact: 663 webhooks
🔔 creation: 95 events, 0 properties
🔔 association_change: 150 events, 0 properties
🔔 property_change: 418 events, 9 properties
🏢 Config 834 (AnyVan.com - 882) - 225415 webhooks
📦 company: 35595 webhooks
🔔 property_change: 5687 events, 3 properties
🔔 association_change: 25219 events, 0 properties
🔔 creation: 4689 events, 0 properties
📦 contact: 76739 webhooks
🔔 property_change: 54620 events, 9 properties
🔔 creation: 4471 events, 0 properties
🔔 association_change: 17648 events, 0 properties
📦 deal: 113081 webhooks
🔔 creation: 7588 events, 0 properties
🔔 property_change: 82720 events, 9 properties
🔔 association_change: 22773 events, 0 properties
🏢 Config 878 (Dingus and Zazzy - 929) - 635 webhooks
📦 deal: 228 webhooks
🔔 property_change: 158 events, 9 properties
🔔 creation: 18 events, 0 properties
🔔 association_change: 52 events, 0 properties
📦 company: 142 webhooks
🔔 property_change: 59 events, 6 properties
🔔 association_change: 69 events, 0 properties
🔔 creation: 14 events, 0 properties
📦 contact: 265 webhooks
🔔 property_change: 192 events, 8 properties
🔔 association_change: 53 events, 0 properties
🔔 creation: 20 events, 0 properties
🏢 Config 671 (CosmosID - 691) - 374 webhooks
📦 company: 64 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 15 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 118 webhooks
🔔 property_change: 78 events, 10 properties
🔔 association_change: 30 events, 0 properties
🔔 creation: 10 events, 0 properties
📦 contact: 192 webhooks
🔔 creation: 13 events, 0 properties
🔔 property_change: 145 events, 8 properties
🔔 association_change: 34 events, 0 properties
🏢 Config 652 (Abode - 673) - 83 webhooks
📦 company: 11 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 10 events, 0 properties
📦 contact: 55 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 40 events, 9 properties
🔔 association_change: 9 events, 0 properties
📦 deal: 17 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 3 events, 0 properties
🔔 property_change: 13 events, 6 properties
🏢 Config 1049 (Classavo - 851) - 24 webhooks
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
📦 contact: 4 webhooks
🔔 association_change: 1 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 1 events, 0 properties
🏢 Config 290 (D1 Training - 308) - 898 webhooks
📦 company: 12 webhooks
🔔 property_change: 5 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 6 events, 0 properties
📦 deal: 480 webhooks
🔔 association_change: 40 events, 0 properties
🔔 creation: 35 events, 0 properties
🔔 property_change: 405 events, 8 properties
📦 contact: 406 webhooks
🔔 creation: 50 events, 0 properties
🔔 property_change: 314 events, 7 properties
🔔 association_change: 42 events, 0 properties
🏢 Config 1019 (SimpleConsign - 1088) - 5388 webhooks
📦 contact: 3686 webhooks
🔔 association_change: 692 events, 0 properties
🔔 property_change: 2659 events, 9 properties
🔔 creation: 335 events, 0 properties
📦 company: 1647 webhooks
🔔 association_change: 698 events, 0 properties
🔔 property_change: 637 events, 6 properties
🔔 creation: 312 events, 0 properties
📦 deal: 55 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🏢 Config 311 (Lemon.io - 329) - 1231 webhooks
📦 company: 274 webhooks
🔔 property_change: 128 events, 6 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 120 events, 0 properties
📦 deal: 464 webhooks
🔔 creation: 16 events, 0 properties
🔔 property_change: 385 events, 23 properties
🔔 association_change: 63 events, 0 properties
📦 contact: 493 webhooks
🔔 property_change: 336 events, 9 properties
🔔 association_change: 103 events, 0 properties
🔔 creation: 54 events, 0 properties
🏢 Config 802 (Street Group - 853) - 3864 webhooks
📦 contact: 2640 webhooks
🔔 creation: 252 events, 0 properties
🔔 association_change: 558 events, 0 properties
🔔 property_change: 1830 events, 9 properties
📦 company: 742 webhooks
🔔 association_change: 617 events, 0 properties
🔔 creation: 31 events, 0 properties
🔔 property_change: 94 events, 6 properties
📦 deal: 482 webhooks
🔔 association_change: 121 events, 0 properties
🔔 property_change: 338 events, 11 properties
🔔 creation: 23 events, 0 properties
🏢 Config 1053 (Sensi.AI - 1117) - 8574 webhooks
📦 company: 1694 webhooks
🔔 property_change: 156 events, 6 properties
🔔 creation: 39 events, 0 properties
🔔 association_change: 1499 events, 0 properties
📦 deal: 663 webhooks
🔔 property_change: 491 events, 15 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 74 events, 0 properties
📦 contact: 6217 webhooks
🔔 association_change: 1577 events, 0 properties
🔔 property_change: 3768 events, 9 properties
🔔 creation: 872 events, 0 properties
🏢 Config 87 (Repsly - 93) - 2108 webhooks
📦 contact: 1739 webhooks
🔔 association_change: 295 events, 0 properties
🔔 property_change: 1285 events, 9 properties
🔔 creation: 159 events, 0 properties
📦 deal: 39 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 13 events, 0 properties
🔔 property_change: 23 events, 6 properties
📦 company: 330 webhooks
🔔 association_change: 298 events, 0 properties
🔔 property_change: 23 events, 5 properties
🔔 creation: 9 events, 0 properties
🏢 Config 518 (Prolific - 544) - 9399 webhooks
📦 deal: 26 webhooks
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 8416 webhooks
🔔 creation: 534 events, 0 properties
🔔 property_change: 7533 events, 8 properties
🔔 association_change: 349 events, 0 properties
📦 company: 957 webhooks
🔔 creation: 30 events, 0 properties
🔔 association_change: 352 events, 0 properties
🔔 property_change: 575 events, 6 properties
🏢 Config 761 (Ressio Software - 770) - 4387 webhooks
📦 company: 2012 webhooks
🔔 property_change: 1370 events, 6 properties
🔔 creation: 207 events, 0 properties
🔔 association_change: 435 events, 0 properties
📦 contact: 2120 webhooks
🔔 property_change: 1582 events, 9 properties
🔔 creation: 152 events, 0 properties
🔔 association_change: 386 events, 0 properties
📦 deal: 255 webhooks
🔔 property_change: 119 events, 5 properties
🔔 creation: 17 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 537 (Mobiz - 563) - 874 webhooks
📦 contact: 805 webhooks
🔔 creation: 19 events, 0 properties
🔔 property_change: 751 events, 9 properties
🔔 association_change: 35 events, 0 properties
📦 company: 64 webhooks
🔔 association_change: 36 events, 0 properties
🔔 property_change: 24 events, 6 properties
🔔 creation: 4 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 1 events, 1 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
🏢 Config 428 (Welcome to the Jungle UK - 461) - 944 webhooks
📦 contact: 491 webhooks
🔔 association_change: 107 events, 0 properties
🔔 property_change: 352 events, 9 properties
🔔 creation: 32 events, 0 properties
📦 deal: 280 webhooks
🔔 property_change: 225 events, 11 properties
🔔 creation: 14 events, 0 properties
🔔 association_change: 41 events, 0 properties
📦 company: 173 webhooks
🔔 property_change: 34 events, 3 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 130 events, 0 properties
🏢 Config 581 (Penfold - 606) - 1191 webhooks
📦 contact: 852 webhooks
🔔 association_change: 161 events, 0 properties
🔔 creation: 117 events, 0 properties
🔔 property_change: 574 events, 9 properties
📦 company: 266 webhooks
🔔 creation: 21 events, 0 properties
🔔 property_change: 78 events, 6 properties
🔔 association_change: 167 events, 0 properties
📦 deal: 73 webhooks
🔔 association_change: 18 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 49 events, 7 properties
🏢 Config 1015 (Travefy - 1049) - 4021 webhooks
📦 contact: 1629 webhooks
🔔 property_change: 1064 events, 9 properties
🔔 creation: 154 events, 0 properties
🔔 association_change: 411 events, 0 properties
📦 deal: 1468 webhooks
🔔 property_change: 1072 events, 10 properties
🔔 creation: 99 events, 0 properties
🔔 association_change: 297 events, 0 properties
📦 company: 924 webhooks
🔔 creation: 151 events, 0 properties
🔔 association_change: 510 events, 0 properties
🔔 property_change: 263 events, 2 properties
🏢 Config 413 (VCC - 347) - 56 webhooks
📦 deal: 11 webhooks
🔔 property_change: 10 events, 5 properties
🔔 association_change: 1 events, 0 properties
📦 contact: 15 webhooks
🔔 property_change: 12 events, 9 properties
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 company: 30 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 18 events, 2 properties
🔔 creation: 9 events, 0 properties
🏢 Config 591 (Data & AI Literacy Academy - 615) - 661 webhooks
📦 company: 160 webhooks
🔔 property_change: 30 events, 3 properties
🔔 association_change: 122 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 34 webhooks
🔔 property_change: 34 events, 6 properties
📦 contact: 467 webhooks
🔔 creation: 39 events, 0 properties
🔔 association_change: 122 events, 0 properties
🔔 property_change: 306 events, 8 properties
🏢 Config 1031 (CUCollaborate - 1096) - 243 webhooks
📦 contact: 133 webhooks
🔔 creation: 9 events, 0 properties
🔔 property_change: 100 events, 9 properties
🔔 association_change: 24 events, 0 properties
📦 deal: 68 webhooks
🔔 creation: 5 events, 0 properties
🔔 association_change: 16 events, 0 properties
🔔 property_change: 47 events, 9 properties
📦 company: 42 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 12 events, 6 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 1025 (Predictiv - 1092) - 39 webhooks
📦 company: 13 webhooks
🔔 property_change: 5 events, 3 properties
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
📦 contact: 26 webhooks
🔔 association_change: 6 events, 0 properties
🔔 property_change: 17 events, 8 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1051 (IndySoft - 1115) - 163 webhooks
📦 company: 41 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 29 events, 0 properties
🔔 property_change: 11 events, 6 properties
📦 deal: 21 webhooks
🔔 property_change: 17 events, 6 properties
🔔 association_change: 3 events, 0 properties
🔔 creation: 1 events, 0 properties
📦 contact: 101 webhooks
🔔 property_change: 64 events, 8 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 28 events, 0 properties
🏢 Config 966 (Crowdcube Ltd - 263) - 580 webhooks
📦 deal: 255 webhooks
🔔 creation: 12 events, 0 properties
🔔 property_change: 204 events, 7 properties
🔔 association_change: 39 events, 0 properties
📦 contact: 193 webhooks
🔔 property_change: 126 events, 9 properties
🔔 creation: 22 events, 0 properties
🔔 association_change: 45 events, 0 properties
📦 company: 132 webhooks
🔔 property_change: 61 events, 6 properties
🔔 association_change: 58 events, 0 properties
🔔 creation: 13 events, 0 properties
🏢 Config 300 (Prowly - 318) - 430 webhooks
📦 company: 102 webhooks
🔔 creation: 10 events, 0 properties
🔔 association_change: 66 events, 0 properties
🔔 property_change: 26 events, 6 properties
📦 contact: 202 webhooks
🔔 creation: 33 events, 0 properties
🔔 association_change: 55 events, 0 properties
🔔 property_change: 114 events, 8 properties
📦 deal: 126 webhooks
🔔 property_change: 80 events, 9 properties
🔔 creation: 9 events, 0 properties
🔔 association_change: 37 events, 0 properties
🏢 Config 265 (Orbital - 283) - 3300 webhooks
📦 deal: 255 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 207 events, 10 properties
🔔 association_change: 45 events, 0 properties
📦 company: 921 webhooks
🔔 property_change: 48 events, 6 properties
🔔 creation: 11 events, 0 properties
🔔 association_change: 862 events, 0 properties
📦 contact: 2124 webhooks
🔔 property_change: 1151 events, 9 properties
🔔 creation: 134 events, 0 properties
🔔 association_change: 839 events, 0 properties
🏢 Config 104 (Just Eat for Business - 111) - 1138 webhooks
📦 company: 141 webhooks
🔔 property_change: 35 events, 3 properties
🔔 association_change: 98 events, 0 properties
🔔 creation: 8 events, 0 properties
📦 deal: 59 webhooks
🔔 creation: 11 events, 0 properties
🔔 association_change: 27 events, 0 properties
🔔 property_change: 21 events, 5 properties
📦 contact: 938 webhooks
🔔 property_change: 797 events, 9 properties
🔔 creation: 52 events, 0 properties
🔔 association_change: 89 events, 0 properties
🏢 Config 1062 (Sigma Labs - 1124) - 70 webhooks
📦 contact: 54 webhooks
🔔 property_change: 38 events, 9 properties
🔔 association_change: 10 events, 0 properties
🔔 creation: 6 events, 0 properties
📦 company: 16 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
🔔 association_change: 10 events, 0 properties
🏢 Config 949 (Truvi - 1023) - 3713 webhooks
📦 contact: 1335 webhooks
🔔 association_change: 967 events, 0 properties
🔔 property_change: 287 events, 9 properties
🔔 creation: 81 events, 0 properties
📦 deal: 1822 webhooks
🔔 creation: 18 events, 0 properties
🔔 association_change: 1278 events, 0 properties
🔔 property_change: 526 events, 7 properties
📦 company: 556 webhooks
🔔 association_change: 451 events, 0 properties
🔔 property_change: 68 events, 3 properties
🔔 creation: 37 events, 0 properties
🏢 Config 945 (Shinydocs - 1019) - 67 webhooks
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 31 webhooks
🔔 association_change: 7 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 23 events, 7 properties
📦 contact: 28 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 14 events, 5 properties
🔔 creation: 3 events, 0 properties
🏢 Config 959 (Voyager - 1031) - 151 webhooks
📦 company: 35 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 8 events, 4 properties
🔔 association_change: 22 events, 0 properties
📦 deal: 1 webhooks
🔔 property_change: 1 events, 1 properties
📦 contact: 115 webhooks
🔔 property_change: 82 events, 9 properties
🔔 association_change: 22 events, 0 properties
🔔 creation: 11 events, 0 properties
🏢 Config 1045 (Cove - 1110) - 4102 webhooks
📦 company: 1117 webhooks
🔔 creation: 92 events, 0 properties
🔔 association_change: 676 events, 0 properties
🔔 property_change: 349 events, 4 properties
📦 contact: 2924 webhooks
🔔 property_change: 2007 events, 8 properties
🔔 creation: 244 events, 0 properties
🔔 association_change: 673 events, 0 properties
📦 deal: 61 webhooks
🔔 property_change: 49 events, 13 properties
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🏢 Config 1065 (Integrum ESG - 1126) - 97 webhooks
📦 contact: 69 webhooks
🔔 property_change: 48 events, 7 properties
🔔 association_change: 18 events, 0 properties
🔔 creation: 3 events, 0 properties
📦 company: 8 webhooks
🔔 association_change: 8 events, 0 properties
📦 deal: 20 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 3 properties
🔔 association_change: 14 events, 0 properties
🏢 Config 680 (The Family Office Company - 700) - 2 webhooks
📦 contact: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 550 (SeedLegals - 576) - 2244 webhooks
📦 company: 297 webhooks
🔔 property_change: 104 events, 3 properties
🔔 association_change: 155 events, 0 properties
🔔 creation: 38 events, 0 properties
📦 contact: 1517 webhooks
🔔 creation: 251 events, 0 properties
🔔 association_change: 156 events, 0 properties
🔔 property_change: 1110 events, 8 properties
📦 deal: 430 webhooks
🔔 property_change: 285 events, 6 properties
🔔 creation: 40 events, 0 properties
🔔 association_change: 105 events, 0 properties
🏢 Config 339 (Rosterfy - 359) - 1274 webhooks
📦 deal: 86 webhooks
🔔 property_change: 69 events, 8 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 14 events, 0 properties
📦 company: 370 webhooks
🔔 creation: 33 events, 0 properties
🔔 property_change: 163 events, 6 properties
🔔 association_change: 174 events, 0 properties
📦 contact: 818 webhooks
🔔 association_change: 176 events, 0 properties
🔔 creation: 93 events, 0 properties
🔔 property_change: 549 events, 9 properties
🏢 Config 822 (NatureMetrics - 871) - 344 webhooks
📦 deal: 82 webhooks
🔔 association_change: 9 events, 0 properties
🔔 creation: 3 events, 0 properties
🔔 property_change: 70 events, 8 properties
📦 company: 89 webhooks
🔔 association_change: 46 events, 0 properties
🔔 creation: 9 events, 0 properties
🔔 property_change: 34 events, 4 properties
📦 contact: 173 webhooks
🔔 property_change: 111 events, 9 properties
🔔 association_change: 43 events, 0 properties
🔔 creation: 19 events, 0 properties
🏢 Config 400 (Dögel GmbH - 439) - 174 webhooks
📦 company: 40 webhooks
🔔 creation: 2 events, 0 properties
🔔 property_change: 22 events, 5 properties
🔔 association_change: 16 events, 0 properties
📦 contact: 116 webhooks
🔔 association_change: 15 events, 0 properties
🔔 creation: 7 events, 0 properties
🔔 property_change: 94 events, 9 properties
📦 deal: 18 webhooks
🔔 association_change: 3 events, 0 properties
🔔 property_change: 14 events, 6 properties
🔔 creation: 1 events, 0 properties
🏢 Config 738 (Locad - 756) - 335 webhooks
📦 contact: 204 webhooks
🔔 association_change: 43 events, 0 properties
🔔 creation: 18 events, 0 properties
🔔 property_change: 143 events, 9 properties
📦 deal: 47 webhooks
🔔 property_change: 27 events, 6 properties
🔔 creation: 5 events, 0 properties
🔔 association_change: 15 events, 0 properties
📦 company: 84 webhooks
🔔 creation: 13 events, 0 properties
🔔 association_change: 48 events, 0 properties
🔔 property_change: 23 events, 5 properties
🏢 Config 166 (CloverDX - 184) - 196 webhooks
📦 contact: 71 webhooks
🔔 creation: 7 events, 0 properties
🔔 property_change: 42 events, 7 properties
🔔 association_change: 22 events, 0 properties
📦 company: 49 webhooks
🔔 association_change: 30 events, 0 properties
🔔 property_change: 16 events, 5 properties
🔔 creation: 3 events, 0 properties
📦 deal: 76 webhooks
🔔 property_change: 48 events, 8 properties
🔔 association_change: 24 events, 0 properties
🔔 creation: 4 events, 0 properties
🏢 Config 605 (Encord - 630) - 233643 webhooks
📦 contact: 127737 webhooks
🔔 property_change: 23696 events, 9 properties
🔔 creation: 530 events, 0 properties
🔔 association_change: 103511 events, 0 properties
📦 company: 105130 webhooks
🔔 property_change: 766 events, 7 properties
🔔 association_change: 104172 events, 0 properties
🔔 creation: 192 events, 0 properties
📦 deal: 776 webhooks
🔔 property_change: 112 events, 6 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 663 events, 0 properties
🏢 Config 884 (Eulerity - 935) - 144 webhooks
📦 company: 22 webhooks
🔔 association_change: 22 events, 0 properties
📦 contact: 120 webhooks
🔔 association_change: 22 events, 0 properties
🔔 property_change: 87 events, 9 properties
🔔 creation: 11 events, 0 properties
📦 deal: 2 webhooks
🔔 property_change: 2 events, 2 properties
🏢 Config 851 (Azion Technologies - 902) - 2856 webhooks
📦 deal: 1209 webhooks
🔔 association_change: 185 events, 0 properties
🔔 property_change: 976 events, 40 properties
🔔 creation: 48 events, 0 properties
📦 company: 321 webhooks
🔔 creation: 6 events, 0 properties
🔔 property_change: 47 events, 6 properties
🔔 association_change: 268 events, 0 properties
📦 contact: 1326 webhooks
🔔 association_change: 257 events, 0 properties
🔔 creation: 69 events, 0 properties
🔔 property_change: 1000 events, 9 properties
🏢 Config 326 (Prairie Robotics - 344) - 148 webhooks
📦 contact: 89 webhooks
🔔 association_change: 44 events, 0 properties
🔔 property_change: 40 events, 8 properties
🔔 creation: 5 events, 0 properties
📦 company: 54 webhooks
🔔 creation: 3 events, 0 properties
🔔 property_change: 7 events, 4 properties
🔔 association_change: 44 events, 0 properties
📦 deal: 5 webhooks
🔔 property_change: 5 events, 3 properties
🏢 Config 1037 (Jibble - 1102) - 8634 webhooks
📦 company: 1607 webhooks
🔔 association_change: 562 events, 0 properties
🔔 property_change: 845 events, 5 properties
🔔 creation: 200 events, 0 properties
📦 contact: 6719 webhooks
🔔 creation: 895 events, 0 properties
🔔 property_change: 5248 events, 8 properties
🔔 association_change: 576 events, 0 properties
📦 deal: 308 webhooks
🔔 association_change: 62 events, 0 properties
🔔 property_change: 214 events, 20 properties
🔔 creation: 32 events, 0 properties
🏢 Config 389 (CommQuotes - 426) - 28 webhooks
📦 company: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 1 events, 1 properties
🔔 association_change: 4 events, 0 properties
📦 contact: 22 webhooks
🔔 property_change: 16 events, 7 properties
🔔 association_change: 4 events, 0 properties
🔔 creation: 2 events, 0 properties
🏢 Config 649 (Eventeny - 670) - 6567 webhooks
📦 contact: 5321 webhooks
🔔 property_change: 3480 events, 8 properties
🔔 association_change: 560 events, 0 properties
🔔 creation: 1281 events, 0 properties
📦 deal: 226 webhooks
🔔 association_change: 10 events, 0 properties
🔔 property_change: 213 events, 7 properties
🔔 creation: 3 events, 0 properties
📦 company: 1020 webhooks
🔔 property_change: 325 events, 6 properties
🔔 association_change: 564 events, 0 properties
🔔 creation: 131 events, 0 properties
🏢 Config 684 (The-Kitchens - 703) - 746 webhooks
📦 deal: 35 webhooks
🔔 property_change: 23 events, 11 properties
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
📦 contact: 493 webhooks
🔔 association_change: 116 events, 0 properties
🔔 creation: 73 events, 0 properties
🔔 property_change: 304 events, 9 properties
📦 company: 218 webhooks
🔔 property_change: 56 events, 5 properties
🔔 creation: 43 events, 0 properties
🔔 association_change: 119 events, 0 properties
🏢 Config 1064 (AdSearch - 1106) - 23 webhooks
📦 contact: 19 webhooks
🔔 property_change: 15 events, 7 properties
🔔 creation: 2 events, 0 properties
🔔 association_change: 2 events, 0 properties
📦 company: 4 webhooks
🔔 property_change: 2 events, 2 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1038 (BACS Consulting Group - 1103) - 14 webhooks
📦 contact: 9 webhooks
🔔 association_change: 2 events, 0 properties
🔔 property_change: 6 events, 6 properties
🔔 creation: 1 events, 0 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 867 (Octopus Money - 916) - 440 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 6 properties
📦 contact: 317 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 219 events, 9 properties
🔔 creation: 23 events, 0 properties
📦 company: 113 webhooks
🔔 association_change: 75 events, 0 properties
🔔 property_change: 32 events, 6 properties
🔔 creation: 6 events, 0 properties
🏢 Config 987 (NetVendor - 1056) - 542 webhooks
📦 contact: 310 webhooks
🔔 property_change: 218 events, 8 properties
🔔 association_change: 61 events, 0 properties
🔔 creation: 31 events, 0 properties
📦 company: 169 webhooks
🔔 creation: 25 events, 0 properties
🔔 property_change: 79 events, 5 properties
🔔 association_change: 65 events, 0 properties
📦 deal: 63 webhooks
🔔 association_change: 8 events, 0 properties
🔔 property_change: 53 events, 8 properties
🔔 creation: 2 events, 0 properties
🏢 Config 962 (evergrowth.io - 1034) - 3433 webhooks
📦 contact: 425 webhooks
🔔 association_change: 19 events, 0 properties
🔔 creation: 8 events, 0 properties
🔔 property_change: 398 events, 8 properties
📦 deal: 2898 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 9 events, 0 properties
🔔 property_change: 2886 events, 2 properties
📦 company: 110 webhooks
🔔 association_change: 22 events, 0 properties
🔔 creation: 6 events, 0 properties
🔔 property_change: 82 events, 3 properties
🏢 Config 762 (Localize - 562) - 421 webhooks
📦 contact: 248 webhooks
🔔 property_change: 145 events, 8 properties
🔔 creation: 26 events, 0 properties
🔔 association_change: 77 events, 0 properties
📦 company: 162 webhooks
🔔 association_change: 77 events, 0 properties
🔔 creation: 16 events, 0 properties
🔔 property_change: 69 events, 6 properties
📦 deal: 11 webhooks
🔔 property_change: 11 events, 1 properties
🏢 Config 1057 (FlourishDx - 1120) - 39 webhooks
📦 deal: 10 webhooks
🔔 property_change: 10 events, 3 properties
📦 contact: 26 webhooks
🔔 property_change: 26 events, 7 properties
📦 company: 3 webhooks
🔔 property_change: 3 events, 1 properties
🏢 Config 427 (Map My Customers Inc. - 460) - 2408 webhooks
📦 contact: 2311 webhooks
🔔 creation: 18 events, 0 properties
🔔 property_change: 2261 events, 8 properties
🔔 association_change: 32 events, 0 properties
📦 company: 74 webhooks
🔔 creation: 3 events, 0 properties
🔔 association_change: 34 events, 0 properties
🔔 property_change: 37 events, 5 properties
📦 deal: 23 webhooks
🔔 association_change: 6 events, 0 properties
🔔 creation: 2 events, 0 properties
🔔 property_change: 15 events, 4 properties
🏢 Config 617 (PCS - 641) - 4697 webhooks
📦 deal: 504 webhooks
🔔 association_change: 154 events, 0 properties
🔔 creation: 21 events, 0 properties
🔔 property_change: 329 events, 9 properties
📦 company: 1746 webhooks
🔔 association_change: 1698 events, 0 properties
🔔 property_change: 44 events, 5 properties
🔔 creation: 4 events, 0 properties
📦 contact: 2447 webhooks
🔔 property_change: 833 events, 8 properties
🔔 association_change: 1598 events, 0 properties
🔔 creation: 16 events, 0 properties
🏢 Config 941 (Papirfly - 1013) - 2973 webhooks
📦 contact: 2050 webhooks
🔔 association_change: 519 events, 0 properties
🔔 property_change: 1344 events, 9 properties
🔔 creation: 187 events, 0 properties
📦 deal: 95 webhooks
🔔 creation: 1 events, 0 properties
🔔 property_change: 94 events, 10 properties
📦 company: 828 webhooks
🔔 creation: 51 events, 0 properties
🔔 association_change: 519 events, 0 properties
🔔 property_change: 258 events, 6 properties
🏢 Config 734 (Codelink - 742) - 13 webhooks
📦 contact: 8 webhooks
🔔 association_change: 2 events, 0 properties
🔔 creation: 1 events, 0 properties
🔔 property_change: 5 events, 5 properties
📦 company: 5 webhooks
🔔 property_change: 2 events, 2 properties
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🏢 Config 1011 (impactsuite.com - 1081) - 85 webhooks
📦 deal: 33 webhooks
🔔 association_change: 11 events, 0 properties
🔔 property_change: 20 events, 7 properties
🔔 creation: 2 events, 0 properties
📦 contact: 41 webhooks
🔔 association_change: 9 events, 0 properties
🔔 property_change: 26 events, 7 properties
🔔 creation: 6 events, 0 properties
📦 company: 11 webhooks
🔔 property_change: 5 events, 1 properties
🔔 association_change: 6 events, 0 properties
🏢 Config 946 (Scrivnr - 1020) - 8 webhooks
📦 contact: 6 webhooks
🔔 creation: 1 events, 0 properties
🔔 association_change: 2 events, 0 properties
🔔 property_change: 3 events, 3 properties
📦 company: 2 webhooks
🔔 association_change: 2 events, 0 properties
🏢 Config 905 (Contractbook Aps - 224) - 3 webhooks
📦 company: 3 webhooks
🔔 property_change: 3 events, 3 properties
🏢 Config 763 (GivePanel - 778) - 6 webhooks
📦 deal: 6 webhooks
🔔 property_change: 6 events, 1 properties
🏢 Config 809 (Sway Me Good - 859) - 31 webhooks
📦 contact: 31 webhooks
🔔 creation: 5 events, 0 properties
🔔 property_change: 26 events, 7 properties
root@06333eebc685:/home/jiminny# php artisan crm:hubspot-webhook
HubSpot Webhook Service Command
Available actions:
redis — Scan, view, and optionally delete batch_sync Redis keys
metrics — View or clear webhook metrics (use -D for stats)
memory — Analyze memory usage across all key types
monitor — Monitor batch sizes and detect issues
cleanup — Clean up critical batches and oversized keys
Common options:
-C, --config=N Filter by CRM config ID (⚡ much faster)
-T, --team=N Filter by Team ID (works with redis & metrics)
-O, --object=TYPE Filter by object type (deal|contact|company)
-E, --event=TYPE Filter by event type (property|association|1|2)
-K, --key-type=TYPE Filter by key type (ids|meta|config|metrics)
--sort=OPTION Sort redis keys: count|team|config (default: count)
--date=YYYY-MM-DD Operate on specific date (end date for ranges)
--from=YYYY-MM-DD Start date for multi-day ranges
--del Delete matched keys or clear metrics
--dry-run Show what would be deleted
-D, --detailed Show detailed stats (metrics: includes top properties, averages)
--format=FORMAT Output format: table|json (default: table)
--force Skip confirmation
--threshold=N Size threshold for monitoring (default: 100000)
--watch Continuous monitoring mode
--interval=N Watch interval in seconds (default: 5)
--exclude-metrics Exclude metrics keys from redis scan
Examples:
# Redis key operations
php artisan crm:hubspot-webhook redis # List all keys (deal, contact, company)
php artisan crm:hubspot-webhook redis -C 2 # ⚡ Fast: only config 2 (shorthand)
php artisan crm:hubspot-webhook redis -K ids # All ID keys (all object types)
php artisan crm:hubspot-webhook redis -K ids # Sort by count (default)
php artisan crm:hubspot-webhook redis -K ids --sort=team # Sort by team name
php artisan crm:hubspot-webhook redis -K ids --sort=config # Sort by config ID
php artisan crm:hubspot-webhook redis -T 123 # Filter by team ID
php artisan crm:hubspot-webhook redis -O contact -K ids # Contact IDs only (shorthand)
php artisan crm:hubspot-webhook redis -C 2 -O deal -K ids -D # With details
php artisan crm:hubspot-webhook redis batch_sync_deal:ids:123:property_change --del
php artisan crm:hubspot-webhook redis --key-type=config --exclude-metrics
# Analysis & monitoring
php artisan crm:hubspot-webhook memory
php artisan crm:hubspot-webhook monitor --threshold=50000 --watch
php artisan crm:hubspot-webhook cleanup --dry-run
# Metrics operations
php artisan crm:hubspot-webhook metrics # Today's summary (default)
php artisan crm:hubspot-webhook metrics -D # Detailed view
php artisan crm:hubspot-webhook metrics -C 2 # Specific config
php artisan crm:hubspot-webhook metrics -O deal # Only deal webhooks
php artisan crm:hubspot-webhook metrics -E property # Only property_change events
php artisan crm:hubspot-webhook metrics --date=2024-01-15
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -O deal # Range with filter
php artisan crm:hubspot-webhook metrics --from=2026-03-09 -D # Range with stats
php artisan crm:hubspot-webhook metrics --format=json # JSON output
root@06333eebc685:/home/jiminny#
DOCKER
Close Tab
-zsh
Close Tab
-zsh
Close Tab
✳ Build full day activity summary from Screenpipe (claude)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
APP (-zsh)
Close Tab
ec2-user@ip-10-30-159-186:~ (nc)
Close Tab
⌥⌘1
ec2-user@ip-10-30-159-186:~...
|
NULL
|
|
15277
|
342
|
26
|
2026-04-14T14:34:38.247960+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-14/1776 /Users/lukas/.screenpipe/data/data/2026-04-14/1776177278247_m1.jpg...
|
NULL
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
•001FirefoxFileEditViewHistoryBookmarksProfiles→T •001FirefoxFileEditViewHistoryBookmarksProfiles→ToolsWindowHelpmeet.google.com/bdj-nvho-bRetro - Platform • 41 m left100% K8 • Tue 14 Apr 17:34:38Alminny.com33:4500Aneliya AngelovaNikolay YankovPop out this videoSteliyan GeorgievNikolay IvanovLukas Kovalik5:34 PM | Retro - PlatformSộ3...
|
NULL
|
-1667830768572150820
|
NULL
|
click
|
ocr
|
NULL
|
•001FirefoxFileEditViewHistoryBookmarksProfiles→T •001FirefoxFileEditViewHistoryBookmarksProfiles→ToolsWindowHelpmeet.google.com/bdj-nvho-bRetro - Platform • 41 m left100% K8 • Tue 14 Apr 17:34:38Alminny.com33:4500Aneliya AngelovaNikolay YankovPop out this videoSteliyan GeorgievNikolay IvanovLukas Kovalik5:34 PM | Retro - PlatformSộ3...
|
NULL
|
|
14823
|
332
|
34
|
2026-04-14T14:08:50.625731+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-14/1776 /Users/lukas/.screenpipe/data/data/2026-04-14/1776175730625_m1.jpg...
|
NULL
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
•0 0FirefoxFileEditViewHistoryBookmarksProfiles→T •0 0FirefoxFileEditViewHistoryBookmarksProfiles→ToolsWindowHelpmeet.google.com/bdj-nvho-bpc0cuthJalosinny.comRetro - Platform • now100% 128 • Tue 14 Apr 17:08:507:58Nikolay Yankov (Presenting, annotating)Pop out thiNikolay YankovAneliya AngelovaSteliyan GeorgievNikolay IvanovLukas Kovalik5:08 PM | Retro - PlatformSộ3...
|
NULL
|
1584221778180439376
|
NULL
|
visual_change
|
ocr
|
NULL
|
•0 0FirefoxFileEditViewHistoryBookmarksProfiles→T •0 0FirefoxFileEditViewHistoryBookmarksProfiles→ToolsWindowHelpmeet.google.com/bdj-nvho-bpc0cuthJalosinny.comRetro - Platform • now100% 128 • Tue 14 Apr 17:08:507:58Nikolay Yankov (Presenting, annotating)Pop out thiNikolay YankovAneliya AngelovaSteliyan GeorgievNikolay IvanovLukas Kovalik5:08 PM | Retro - PlatformSộ3...
|
NULL
|
|
24387
|
528
|
36
|
2026-04-15T12:20:38.732014+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-15/1776 /Users/lukas/.screenpipe/data/data/2026-04-15/1776255638732_m1.jpg...
|
NULL
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHe iTerm2ShellEditViewSessionScriptsProfilesWindowHelp•80 ll O# Sprint Review - in 40 mA100% <7Wed 15 Apr 15:20:38T&1-zsh-zshDOCKERO ₴81DEV (-zsh)$82APP (-zsh)83ec2-user@ip-10-.. 884*5-zsh86-zsh$7* Unable to a...O 88-zshmodifiers INTEGER,-- Text contenttext_content TEXT,text_length INTEGER,-- App contextapp_name TEXT,app_pid INTEGER,window_title TEXT,browser_url TEXT,-- Element context (from accessibility APIs)element_role TEXT,element_name TEXT,element_value TEXT,element_description TEXT,element_automation_id TEXT,element_bounds TEXT,--JSON: {"x":0,"y":0, "width" : 100, "height":50}-- Frame correlationframe_id INTEGER,-- Sync columnssync_id TEXT,machine_id TEXT,synced_at DATETIMECREATE TABLE video_chunks (id INTEGER PRIMARY KEY AUTOINCREMENT,file_path TEXT NOT NULLdevice_name TEXT NOT NULL DEFAULT "', sync_id TEXT, machine_id TEXT, synced_at DATETIME, fps REAL NOT NULL DEFAULT 0.5, cloud_blob_id TEXT DEFAULT NULL)CREATE TABLE vision_tags (vision_id INTEGER NOT NULL,tag_id INTEGER NOT NULL,PRIMARY KEY (vision_id, tag_id),FOREIGN KEY (vision_id) REFERENCES frames(id) ON DELETE CASCADE,FOREIGN KEY (tag_id) REFERENCES tags(id) ON DELETE CASCADElukas®Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ sqlite3 ~/.screenpipe/db.sqlite "SELECT frame_id, app_name, window_name, browser_url, focused,substr(text, 1, 100) as text_previewFROM ocr_textORDER BY frame_id DESCLIMIT 5;Error: in prepare, no such column: browser_urlSELECT frame_id, app_name, window_name, browser_url, focused,error here ---^lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $substr(...
|
NULL
|
-5255543963800158769
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHe iTerm2ShellEditViewSessionScriptsProfilesWindowHelp•80 ll O# Sprint Review - in 40 mA100% <7Wed 15 Apr 15:20:38T&1-zsh-zshDOCKERO ₴81DEV (-zsh)$82APP (-zsh)83ec2-user@ip-10-.. 884*5-zsh86-zsh$7* Unable to a...O 88-zshmodifiers INTEGER,-- Text contenttext_content TEXT,text_length INTEGER,-- App contextapp_name TEXT,app_pid INTEGER,window_title TEXT,browser_url TEXT,-- Element context (from accessibility APIs)element_role TEXT,element_name TEXT,element_value TEXT,element_description TEXT,element_automation_id TEXT,element_bounds TEXT,--JSON: {"x":0,"y":0, "width" : 100, "height":50}-- Frame correlationframe_id INTEGER,-- Sync columnssync_id TEXT,machine_id TEXT,synced_at DATETIMECREATE TABLE video_chunks (id INTEGER PRIMARY KEY AUTOINCREMENT,file_path TEXT NOT NULLdevice_name TEXT NOT NULL DEFAULT "', sync_id TEXT, machine_id TEXT, synced_at DATETIME, fps REAL NOT NULL DEFAULT 0.5, cloud_blob_id TEXT DEFAULT NULL)CREATE TABLE vision_tags (vision_id INTEGER NOT NULL,tag_id INTEGER NOT NULL,PRIMARY KEY (vision_id, tag_id),FOREIGN KEY (vision_id) REFERENCES frames(id) ON DELETE CASCADE,FOREIGN KEY (tag_id) REFERENCES tags(id) ON DELETE CASCADElukas®Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ sqlite3 ~/.screenpipe/db.sqlite "SELECT frame_id, app_name, window_name, browser_url, focused,substr(text, 1, 100) as text_previewFROM ocr_textORDER BY frame_id DESCLIMIT 5;Error: in prepare, no such column: browser_urlSELECT frame_id, app_name, window_name, browser_url, focused,error here ---^lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $substr(...
|
NULL
|
|
14117
|
312
|
18
|
2026-04-14T13:16:00.121610+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-14/1776 /Users/lukas/.screenpipe/data/data/2026-04-14/1776172560121_m1.jpg...
|
NULL
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHe iTerm2ShellEditViewSessionScriptsProfilesWindowHelpallRetro - Platform • in 45 mA100% <-zshDOCKER** *81DEV (docker)882APP (-zsh)[EMAIL](pgsize)/1024/1024 as size_mbFROM dbstatGROUP BY nameORDER BY size_mb DESCLIMIT 20;"zsh: command not found: #^C[A^CError: stepping, interrupted (9)Program interrupted.lukas®Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ sqlite3 ~/.screenpipe/db.sqlite "SELECT name,SUM(pgsize)/1024/1024 as size_mbFROM dbstatGROUP BY nameORDER BY size_mb DESCLIMIT 20;"frames 1358ocr_text|347elements |146frames_fts_content|76idx_elements_source_role_textl23idx_elements_frame_source_rolel23frames_fts_datal19elements_fts_datal19idx_elements_frame_sourcel16idx_elements_source|13idx_elements_frame_idl10elements_fts_docsizel9idx_elements_parent_idl8ui_events|3idx_ui_events_session_idl1vision_tagsl0video_chunks 10ui_events_fts_idxl0ui_events_fts_docsizel0ui_events_fts_datal0lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ sqlite3~/. screenpipe/db.sqlite "SELECT(SELECT COUNT(*) FROM frames) as frames,(SELECT COUNT(*) FROM ocr_text) as ocr_rows,(SELECT COUNT(*) FROM ui_monitoring) as ui_rows;"Error: in prepare, no such table: ui_monitoringlukas®Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ sqlite3imoni ti screenpipe S sqliteß ~/ screenpipe/db.salite "SELECT MIN(timestamp) FROM frames;"2026-04-09T16:53:09.043761+00:00lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $$84-zsh-zsh86-zsh0 878Tue 14 Apr 16:15:59T81* Unable to acce...O 88...
|
NULL
|
-3821198909420731916
|
NULL
|
visual_change
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHe iTerm2ShellEditViewSessionScriptsProfilesWindowHelpallRetro - Platform • in 45 mA100% <-zshDOCKER** *81DEV (docker)882APP (-zsh)[EMAIL](pgsize)/1024/1024 as size_mbFROM dbstatGROUP BY nameORDER BY size_mb DESCLIMIT 20;"zsh: command not found: #^C[A^CError: stepping, interrupted (9)Program interrupted.lukas®Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ sqlite3 ~/.screenpipe/db.sqlite "SELECT name,SUM(pgsize)/1024/1024 as size_mbFROM dbstatGROUP BY nameORDER BY size_mb DESCLIMIT 20;"frames 1358ocr_text|347elements |146frames_fts_content|76idx_elements_source_role_textl23idx_elements_frame_source_rolel23frames_fts_datal19elements_fts_datal19idx_elements_frame_sourcel16idx_elements_source|13idx_elements_frame_idl10elements_fts_docsizel9idx_elements_parent_idl8ui_events|3idx_ui_events_session_idl1vision_tagsl0video_chunks 10ui_events_fts_idxl0ui_events_fts_docsizel0ui_events_fts_datal0lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ sqlite3~/. screenpipe/db.sqlite "SELECT(SELECT COUNT(*) FROM frames) as frames,(SELECT COUNT(*) FROM ocr_text) as ocr_rows,(SELECT COUNT(*) FROM ui_monitoring) as ui_rows;"Error: in prepare, no such table: ui_monitoringlukas®Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ sqlite3imoni ti screenpipe S sqliteß ~/ screenpipe/db.salite "SELECT MIN(timestamp) FROM frames;"2026-04-09T16:53:09.043761+00:00lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $$84-zsh-zsh86-zsh0 878Tue 14 Apr 16:15:59T81* Unable to acce...O 88...
|
NULL
|
|
39549
|
802
|
32
|
2026-04-16T13:47:54.927785+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-16/1776 /Users/lukas/.screenpipe/data/data/2026-04-16/1776347274927_m1.jpg...
|
NULL
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHe iTerm2ShellEditViewSessionScriptsProfilesWindowHelp100% <47-zshThu 16 Apr 16:47:54T&1DOCKERO ₴1DEV (-zsh)O 82APP (-zsh)stamp >= date('now','-1day');"10618|2026-04-15T09:44:14.874643+00:0012026-04-16T13:36:06.286533+00:00lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ S sqlite3~/.screenpipe/db.sqlite "SELECT date(timestamp)BYdate(timestamp) ORDER BY day DESC LIMIT 14;"2026-04-16117222026-04-15188962026-04-14129232026-04-13122922026-04-1211301lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipeLukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cat config.json"disable_audio": true,"monitor_ids": ["Display 1_1440x900_0,0", "Display 2_3008x1253_-813,-1253"],"ignored_windows": ["1Password","Keychain Access","Bitwarden","System Preferences","System Settings","zoom.us","НВО Мax","Screenpipe Dashboard","Boosteroid"• *3-zsh• *4-zshday, COUNT(*) as frames FROM frames WHERE app_name = 'Boosteroid']}lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ sqlite3~/.screenpipe/db.sqlite "SELECT DISTINCT app_name FROM frames ORDER BY app_name LIMIT 5;" # just a sanity checkActivity MonitorAlfredBoosteroidCalendarError: in prepare, unrecognized token:"#"^--- error herelukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ sqlite3~/.screenpipe/db.sqlite "SELECT DISTINCT app_name FROM frames ORDER BY app_name LIMIT 5;"Activity MonitorAlfredBoosteroidCalendarlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ screenpipe --helpzsh: command not found: screenpipelukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ |grep -i ignor...
|
NULL
|
6705430894699018858
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHe iTerm2ShellEditViewSessionScriptsProfilesWindowHelp100% <47-zshThu 16 Apr 16:47:54T&1DOCKERO ₴1DEV (-zsh)O 82APP (-zsh)stamp >= date('now','-1day');"10618|2026-04-15T09:44:14.874643+00:0012026-04-16T13:36:06.286533+00:00lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ S sqlite3~/.screenpipe/db.sqlite "SELECT date(timestamp)BYdate(timestamp) ORDER BY day DESC LIMIT 14;"2026-04-16117222026-04-15188962026-04-14129232026-04-13122922026-04-1211301lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipeLukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cat config.json"disable_audio": true,"monitor_ids": ["Display 1_1440x900_0,0", "Display 2_3008x1253_-813,-1253"],"ignored_windows": ["1Password","Keychain Access","Bitwarden","System Preferences","System Settings","zoom.us","НВО Мax","Screenpipe Dashboard","Boosteroid"• *3-zsh• *4-zshday, COUNT(*) as frames FROM frames WHERE app_name = 'Boosteroid']}lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ sqlite3~/.screenpipe/db.sqlite "SELECT DISTINCT app_name FROM frames ORDER BY app_name LIMIT 5;" # just a sanity checkActivity MonitorAlfredBoosteroidCalendarError: in prepare, unrecognized token:"#"^--- error herelukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ sqlite3~/.screenpipe/db.sqlite "SELECT DISTINCT app_name FROM frames ORDER BY app_name LIMIT 5;"Activity MonitorAlfredBoosteroidCalendarlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ screenpipe --helpzsh: command not found: screenpipelukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ |grep -i ignor...
|
NULL
|
|
74673
|
1859
|
24
|
2026-04-23T10:09:44.562757+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-23/1776 /Users/lukas/.screenpipe/data/data/2026-04-23/1776938984562_m1.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
PreviewFile Edit View Go ToolsWindowHelpI ~ плате PreviewFile Edit View Go ToolsWindowHelpI ~ платежно-март.pdf1 pageSupport Daily • in 1h 51 m100% <4Q- SearchO• ₴4-zshn /Users/lukas or its parentsn /Users/lukas or its parentsThu 23 Apr 13:09:44181*5+PROD© банкадскИЗДАДЕН ПРЕВОД BISERA EUR EURСтатус: Осчетоводен20260227A00151511451Уникален регистрационен номер27.02.2026n /Users/lukas or its parentsn /Users/lukas or its parentsПлатете на - Име на получателячЦДг МилаIBAN / Сметка на получателяBG43UBBS81551007780277При банка - име на банката на получателяUnited Bulgarian Bank JSCАВИЗО ЗА ИЗДАДЕНО ПРЕВОДНО НАРЕЖДАНЕза кредитен преводОснование за превод - информация за получателяДАНИЕЛ КОВАЛИК МАРТОще пояснениязид валута СумаEURНаредител - имеLUKAS KOVALIKIBAN на наредителяBG07STSA93000026574472Платежна системаBISERA EUR"таксиРазмер на такса0.00 EUR0.00 BGN**Референция на осчетоводяване20260227029981107871• Такси: 1 - за сметка на наредителя; 2 -споделена: 3 - за сметка на получателяdocker-iamp_1 Tean Tourlaner (d9b71080-3886-4C15-8175-aaof29bee635) is not yet assignВIC на банката на получателяUBBSBGSFXXXn /Users/lukas or its parentsn /Users/lukas or its parentsSTAGE410.00 EUR801.89 BGN**n /Users/lukas or its parentsn /Users/lukas or its parentsВIC на банката на наредителяSTSABGSFДата Осчетоводяване27.02.2026дск регистрация0B72702260049200@Lukas-n /Users/lukas or its parentsn Users/lukas or its parentsFRONTENDn /Users/lukas or its parentsn /Users/lukas or its parentsEXTENSIONJLEELTTIS...
|
NULL
|
-5773325219158078033
|
NULL
|
click
|
ocr
|
NULL
|
PreviewFile Edit View Go ToolsWindowHelpI ~ плате PreviewFile Edit View Go ToolsWindowHelpI ~ платежно-март.pdf1 pageSupport Daily • in 1h 51 m100% <4Q- SearchO• ₴4-zshn /Users/lukas or its parentsn /Users/lukas or its parentsThu 23 Apr 13:09:44181*5+PROD© банкадскИЗДАДЕН ПРЕВОД BISERA EUR EURСтатус: Осчетоводен20260227A00151511451Уникален регистрационен номер27.02.2026n /Users/lukas or its parentsn /Users/lukas or its parentsПлатете на - Име на получателячЦДг МилаIBAN / Сметка на получателяBG43UBBS81551007780277При банка - име на банката на получателяUnited Bulgarian Bank JSCАВИЗО ЗА ИЗДАДЕНО ПРЕВОДНО НАРЕЖДАНЕза кредитен преводОснование за превод - информация за получателяДАНИЕЛ КОВАЛИК МАРТОще пояснениязид валута СумаEURНаредител - имеLUKAS KOVALIKIBAN на наредителяBG07STSA93000026574472Платежна системаBISERA EUR"таксиРазмер на такса0.00 EUR0.00 BGN**Референция на осчетоводяване20260227029981107871• Такси: 1 - за сметка на наредителя; 2 -споделена: 3 - за сметка на получателяdocker-iamp_1 Tean Tourlaner (d9b71080-3886-4C15-8175-aaof29bee635) is not yet assignВIC на банката на получателяUBBSBGSFXXXn /Users/lukas or its parentsn /Users/lukas or its parentsSTAGE410.00 EUR801.89 BGN**n /Users/lukas or its parentsn /Users/lukas or its parentsВIC на банката на наредителяSTSABGSFДата Осчетоводяване27.02.2026дск регистрация0B72702260049200@Lukas-n /Users/lukas or its parentsn Users/lukas or its parentsFRONTENDn /Users/lukas or its parentsn /Users/lukas or its parentsEXTENSIONJLEELTTIS...
|
74670
|