update_task
Modify tasks in a Storyblok space by updating task details such as name, description, type, webhook URL, or lambda code using the Management API.
Instructions
Updates an existing task in a specified Storyblok space using the Management API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
lambda_code | No | ||
name | No | ||
task_id | 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": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"task_id": {
"title": "Task Id",
"type": "integer"
},
"task_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "webhook",
"title": "Task Type"
},
"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": [
"task_id"
],
"title": "update_taskArguments",
"type": "object"
}