create_tag
Add tags to content in your Storyblok space using the Management API. Define tag names and associate them with specific stories for better organization and searchability.
Instructions
Creates a new tag in a Storyblok space via the Management API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
story_id | No |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"story_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Story Id"
}
},
"required": [
"name"
],
"title": "create_tagArguments",
"type": "object"
}