create_webhook
Set up webhooks in Storyblok CMS to automate actions like content updates or notifications by defining endpoints, triggering events, and configuring security secrets.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| actions | Yes | ||
| activated | No | ||
| endpoint | Yes | ||
| name | Yes | ||
| secret | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"actions": {
"items": {
"type": "string"
},
"type": "array"
},
"activated": {
"type": "boolean"
},
"endpoint": {
"type": "string"
},
"name": {
"type": "string"
},
"secret": {
"type": "string"
}
},
"required": [
"name",
"endpoint",
"actions"
],
"type": "object"
}