Skip to main content
POST
/
v1
/
workflow-runs
/
{run_id}
/
callback
Workflow Run Callback Handler
curl --request POST \
  --url http://localhost:8000/v1/workflow-runs/{run_id}/callback \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "COMPLETED",
  "error": "<string>"
}
'
{
  "status": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.knowledgestack.ai/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

run_id
string<uuid>
required

Body

application/json

Request body for the runner callback endpoint.

status
enum<string>
required
Available options:
COMPLETED,
FAILED
error
string | null
Maximum string length: 8192

Response

Successful Response

Response from the runner callback endpoint.

status
string
required