create_access_token
Generate secure access tokens for Storyblok CMS to manage content via AI tools. Specify access type, cache duration, and associated stories or branches for controlled content operations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| access | Yes | ||
| branch_id | No | ||
| 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"
},
"min_cache": {
"type": "number"
},
"name": {
"type": "string"
},
"story_ids": {
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"access"
],
"type": "object"
}