Skip to main content
POST
/
blueprint
/
{blueprint_id}
/
execute
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.execute_blueprint(blueprint_id="<id>", init_input={
        "key": "<value>",
        "key1": "<value>",
        "key2": "<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

Body

application/json

ExecuteBlueprintRequest

init_input
Init Input · object

Response

Successful Response