From 09fb7d314f895a4b2257aca30752c27021e06ed9 Mon Sep 17 00:00:00 2001 From: Varun Nuthalapati Date: Mon, 25 May 2026 18:39:13 -0700 Subject: [PATCH] feat: add copy-to-clipboard button for inbound webhook URL Users setting up inbound telephony had no easy way to copy the webhook URL to paste into their provider dashboard. Add a copyable inbound webhook URL display in the configuration detail card, following the existing Configuration ID copy button pattern. --- .../[configId]/page.tsx | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/ui/src/app/telephony-configurations/[configId]/page.tsx b/ui/src/app/telephony-configurations/[configId]/page.tsx index 583916e..565b5f4 100644 --- a/ui/src/app/telephony-configurations/[configId]/page.tsx +++ b/ui/src/app/telephony-configurations/[configId]/page.tsx @@ -239,7 +239,7 @@ export default function TelephonyConfigurationDetailPage() { - +
{Object.entries(config.credentials ?? {}).map(([k, v]) => (
@@ -250,6 +250,24 @@ export default function TelephonyConfigurationDetailPage() {
))}
+
+

Inbound webhook URL

+ +