Python
from meibelai import Meibelai import os with Meibelai( api_key_header=os.getenv("MEIBELAI_API_KEY_HEADER", ""), ) as m_client: res = m_client.workflows.start_blueprint_instance(blueprint_instance_id="<id>", workflow_args=[ "<value 1>", ], workflow_kwargs={ "key": "<value>", "key1": "<value>", "key2": "<value>", }) # Handle response print(res)
"<any>"
Unique identifier for the workflow instance
StartBlueprintInstanceRequest
Successful Response
The response is of type any.
any