Skip to main content
POST
/
api
/
v1
/
events
/
workflows
Indicates a :ref:`ref_flyteidl.event.WorkflowExecutionEvent` has occurred
curl --request POST \
  --url https://mycluster.domino.tech/api/v1/events/workflows \
  --header 'Content-Type: application/json' \
  --data '
{
  "request_id": "<string>",
  "event": {
    "execution_id": {
      "project": "<string>",
      "domain": "<string>",
      "name": "<string>",
      "org": "<string>"
    },
    "producer_id": "<string>",
    "phase": "UNDEFINED",
    "occurred_at": "2023-11-07T05:31:56Z",
    "output_uri": "<string>",
    "error": {
      "code": "<string>",
      "message": "<string>",
      "error_uri": "<string>",
      "kind": "UNKNOWN",
      "timestamp": "2023-11-07T05:31:56Z",
      "worker": "<string>"
    },
    "output_data": {
      "literals": {}
    }
  }
}
'
{}

Body

application/json

Request to send a notification that a workflow execution event has occurred.

Request to send a notification that a workflow execution event has occurred.

request_id
string
event
object

Response

A successful response.

Purposefully empty, may be populated in the future.