update_tag
Modify the name of an existing tag in a Storyblok space by specifying the tag ID and the new desired name.
Instructions
Updates the name of an existing tag in a Storyblok space.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_name | Yes | ||
tag_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"new_name": {
"title": "New Name",
"type": "string"
},
"tag_id": {
"title": "Tag Id",
"type": "string"
}
},
"required": [
"tag_id",
"new_name"
],
"title": "update_tagArguments",
"type": "object"
}