create_datasource_entry
Create a new datasource entry in a Storyblok space by specifying the datasource ID, name, and value to organize and manage structured data efficiently.
Instructions
Creates a new datasource entry in a specified Storyblok space.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasource_id | Yes | ||
name | Yes | ||
value | Yes |
Input Schema (JSON Schema)
{
"properties": {
"datasource_id": {
"title": "Datasource Id",
"type": "integer"
},
"name": {
"title": "Name",
"type": "string"
},
"value": {
"title": "Value",
"type": "string"
}
},
"required": [
"datasource_id",
"name",
"value"
],
"title": "create_datasource_entryArguments",
"type": "object"
}