File tree Expand file tree Collapse file tree 1 file changed +25
-7
lines changed
src/content/docs/integrate/webhooks Expand file tree Collapse file tree 1 file changed +25
-7
lines changed Original file line number Diff line number Diff line change @@ -73,25 +73,43 @@ Events can also be retrieved using:
73
73
74
74
## Webhook triggers
75
75
76
- Available triggers include:
76
+ ### Authentication webhooks
77
77
78
78
``` jsx
79
79
organization .created ;
80
- organization .updated ;
81
80
user .created ;
82
- user .updated ;
83
- user .deleted ;
84
81
user .authentication_failed ;
85
82
user .authenticated ;
86
- organization .deleted ;
83
+ subscriber .created ;
84
+ access_request .created ;
85
+ ```
86
+
87
+ ### User management webhooks
88
+
89
+ ``` jsx
87
90
role .created ;
88
91
role .updated ;
89
92
role .deleted ;
90
93
permission .created ;
91
94
permission .updated ;
92
95
permission .deleted ;
93
- subscriber .created ;
94
- access_request .created ;
96
+ organization .updated ;
97
+ organization .deleted ;
98
+ user .updated ;
99
+ user .deleted ;
100
+ ```
101
+
102
+ ### Billing webhooks
103
+
104
+ ``` jsx
105
+ customer .agreement_cancelled ;
106
+ customer .agreement_created ;
107
+ customer .invoice_overdue ;
108
+ customer .meter_usage_updated ;
109
+ customer .payment_failed ;
110
+ customer .payment_succeeded ;
111
+ customer .plan_assigned ;
112
+ customer .plan_changed ;
95
113
```
96
114
97
115
<Aside >
You can’t perform that action at this time.
0 commit comments