retrieve_multiple_webhooks
Fetch multiple webhook endpoints from a specified Storyblok space via the Management API, enabling efficient monitoring and management of webhook configurations.
Instructions
Retrieves multiple webhook endpoints from a specified Storyblok space using the Management API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | ||
per_page | No |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 1,
"title": "Page"
},
"per_page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 25,
"title": "Per Page"
}
},
"title": "retrieve_multiple_webhooksArguments",
"type": "object"
}