Skip to main content
PUT
/
blueprint
/
{blueprint_id}
/
task
/
{task_id}
Python (SDK)
from meibelai import Meibelai
import os


with Meibelai(
    api_key_header=os.getenv("MEIBELAI_API_KEY_HEADER", ""),
) as m_client:

    res = m_client.blueprints.update_blueprint_task(blueprint_id="<id>", task_id="<id>", name="<value>", description="artistic degenerate knit chow obnoxiously loosely instead sleepily below", input_schema={
        "key": "<value>",
        "key1": "<value>",
        "key2": "<value>",
    }, output_schema={
        "key": "<value>",
        "key1": "<value>",
    }, config_schema={
        "key": "<value>",
    }, tool_schema={
        "key": "<value>",
    })

    # Handle response
    print(res)
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Meibel-API-Key
string
header
required

Path Parameters

blueprint_id
string
required
task_id
string
required

Body

application/json

UpdateBlueprintTaskRequest

name
string | null
description
string | null
input_schema
Input Schema · object
output_schema
Output Schema · object
config_schema
Config Schema · object
tool_schema
Tool Schema · object

Response

Successful Response