curl --request POST \
--url https://control-plane.kubiya.ai/api/v1/executions/{execution_id}/message \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"message": "<string>",
"role": "user"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Send a followup message to a running execution using Temporal signals.
This sends a signal to the Temporal workflow, adding the message to the conversation. The workflow will process the message and respond accordingly.
curl --request POST \
--url https://control-plane.kubiya.ai/api/v1/executions/{execution_id}/message \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"message": "<string>",
"role": "user"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?