update_webhook
Modify an existing webhook endpoint in a Storyblok space by updating its name, endpoint, actions, description, secret, or activation status using the Storyblok MCP Server.
Instructions
Updates an existing webhook endpoint in a specified Storyblok space.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actions | No | ||
activated | No | ||
description | No | ||
endpoint | No | ||
name | No | ||
secret | No | ||
webhook_endpoint_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"actions": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Actions"
},
"activated": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Activated"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"endpoint": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Endpoint"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"secret": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Secret"
},
"webhook_endpoint_id": {
"title": "Webhook Endpoint Id",
"type": "integer"
}
},
"required": [
"webhook_endpoint_id"
],
"title": "update_webhookArguments",
"type": "object"
}