Skip to main content
POST
/
{blueprint_instance_id}
/
signals
/
{signal_name}
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.executions.send_signal(blueprint_instance_id="<id>", signal_name="<value>", request_body=[
        "<value 1>",
        "<value 2>",
        "<value 3>",
    ])

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

Authorizations

Meibel-API-Key
string
header
required

Path Parameters

blueprint_instance_id
string
required

Unique identifier for the workflow instance

signal_name
string
required

Name of the signal to send

Body

application/json

Response

Successful Response