init_asset_upload
Initialize asset uploads by providing filename, size, and content type for integration with Storyblok CMS, enabling efficient management of digital assets.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_type | Yes | ||
filename | Yes | ||
size | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content_type": {
"type": "string"
},
"filename": {
"type": "string"
},
"size": {
"type": "number"
}
},
"required": [
"filename",
"size",
"content_type"
],
"type": "object"
}