From b3d4390f1d6048a35faddcae7da7a83d59b8d026 Mon Sep 17 00:00:00 2001 From: Benjamin Date: Sun, 12 Mar 2023 08:32:43 -0400 Subject: [PATCH] Add `ownerEmail` to eventhandlers.md An `ownerEmail` field is required to successfully submit the workflow to the API. --- docs/docs/labs/eventhandlers.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/docs/labs/eventhandlers.md b/docs/docs/labs/eventhandlers.md index 304795af49..16130e3551 100644 --- a/docs/docs/labs/eventhandlers.md +++ b/docs/docs/labs/eventhandlers.md @@ -43,7 +43,8 @@ Send `POST` requests to `/metadata/workflow` endpoint with below payloads: "taskReferenceName": "test_task_tobe_completed_by_eventHandler", "type": "WAIT" } - ] + ], + "ownerEmail": "example@email.com" } ``` @@ -62,7 +63,8 @@ Send `POST` requests to `/metadata/workflow` endpoint with below payloads: "type": "EVENT", "sink": "conductor" } - ] + ], + "ownerEmail": "example@email.com" } ```