Workflow signals request

Stream workflow events in real-time

Endpoint

GET /api/workflow/signals/

Auth

Authorization: Bearer ${token}

Query Parameters

KeyDefault
identity

Response

Streamed (application/stream+json); a new entity chunk is emitted for each workflow signal until the client disconnects. Unlike events (a one-shot list of past events), signals is the real-time stream.

Json
[
    {
        "kind": "status",
        "payload": {
            "code": 0,
            "message": ""
        }
    },
    {
        "kind": "entity",
        "payload": {
            "message": "",
            "time": 0
        }
    }
]

Notes

  • Workflow Permission Required
  • Always streamed