unpublish_story
Remove a published Storyblok story from public access by specifying its ID using this tool. Supports optional language settings for targeted unpublishing.
Instructions
Unpublishes a Storyblok story by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lang | No | ||
story_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"lang": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Lang"
},
"story_id": {
"title": "Story Id",
"type": "integer"
}
},
"required": [
"story_id"
],
"title": "unpublish_storyArguments",
"type": "object"
}