diff --git a/ui-ngx/src/app/modules/home/pages/notification/recipient/recipient-notification-dialog.component.html b/ui-ngx/src/app/modules/home/pages/notification/recipient/recipient-notification-dialog.component.html
index 311dbee6d9..3fd10c8729 100644
--- a/ui-ngx/src/app/modules/home/pages/notification/recipient/recipient-notification-dialog.component.html
+++ b/ui-ngx/src/app/modules/home/pages/notification/recipient/recipient-notification-dialog.component.html
@@ -135,10 +135,11 @@
- notification.webhook-url
+ {{ (targetNotificationForm.get('configuration.useOldApi').value ?
+ 'notification.webhook-url' : 'notification.workflow-url') | translate }}
- {{ 'notification.webhook-url-required' | translate }}
+ {{ (targetNotificationForm.get('configuration.useOldApi').value ? 'notification.webhook-url-required' : 'notification.workflow-url-required') | translate }}
diff --git a/ui-ngx/src/assets/locale/locale.constant-en_US.json b/ui-ngx/src/assets/locale/locale.constant-en_US.json
index bb4fc57e8a..88522950e3 100644
--- a/ui-ngx/src/assets/locale/locale.constant-en_US.json
+++ b/ui-ngx/src/assets/locale/locale.constant-en_US.json
@@ -4327,6 +4327,8 @@
"warning": "Warning",
"webhook-url": "Webhook URL",
"webhook-url-required": "Webhook URL is required",
+ "workflow-url": "Workflow URL",
+ "workflow-url-required": "Workflow URL is required",
"channel-name": "Channel name",
"channel-name-required": "Channel name is required",
"settings": {