update_access_token
Update access token settings in Storyblok CMS by modifying ID, access type, name, cache duration, story IDs, or branch ID using the MCP server integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
access | No | ||
branch_id | No | ||
id | Yes | ||
min_cache | No | ||
name | No | ||
story_ids | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"access": {
"enum": [
"public",
"private"
],
"type": "string"
},
"branch_id": {
"type": "number"
},
"id": {
"type": "string"
},
"min_cache": {
"type": "number"
},
"name": {
"type": "string"
},
"story_ids": {
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"id"
],
"type": "object"
}