create_task
Create a new task in a Storyblok space using the Management API. Define task types, webhook URLs, and descriptions to automate workflows and manage content efficiently.
Instructions
Creates a new task in a specified Storyblok space using the Management API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
lambda_code | No | ||
name | Yes | ||
task_type | No | webhook | |
user_dialog | No | ||
webhook_url | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"lambda_code": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Lambda Code"
},
"name": {
"title": "Name",
"type": "string"
},
"task_type": {
"default": "webhook",
"title": "Task Type",
"type": "string"
},
"user_dialog": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "User Dialog"
},
"webhook_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Webhook Url"
}
},
"required": [
"name"
],
"title": "create_taskArguments",
"type": "object"
}