-
Notifications
You must be signed in to change notification settings - Fork 1k
config properties webhooks
GitHub Action edited this page Feb 5, 2026
·
27 revisions
v2.4.2
object (webhooks)
| Property | Type | Required | Nullable | Defined by |
|---|---|---|---|---|
| allow_time_expiration | boolean |
Optional | cannot be null | Config |
| enabled | boolean |
Optional | cannot be null | Config |
| hooks | array |
Optional | cannot be null | Config |
allow_time_expiration determines whether webhooks are disabled when unused for 30 days
(only for database webhooks).
allow_time_expiration
-
is optional
-
cannot be null
boolean
The default value is:
falseenabled enables the webhook feature.
enabled
-
is optional
-
cannot be null
boolean
The default value is:
falsehooks is a list of Webhook configurations.
When using environment variables the value for the WEBHOOKS_HOOKS key must be specified in the following
format:
{"callback":"http://app.com/usercb","events":["user"]};{"callback":"http://app.com/emailcb","events":["email.send"]}
hooks
-
is optional
-
cannot be null
object[] (hooks)