-
Notifications
You must be signed in to change notification settings - Fork 896
config properties webhooks
GitHub Action edited this page Oct 15, 2024
·
4 revisions
v1.1.0
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
enabled
enables the webhook feature.
enabled
-
is optional
-
cannot be null
boolean
hooks
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)