+ Notifications for SMS events +
+
+ {webhook.deliveryUrl}
+
+
+ {showSecret ? webhook.signingSecret : maskSecret(webhook.signingSecret)}
+
+
+ + When a new SMS is received, we'll send a POST request to your + webhook URL with the event data. Your endpoint should: +
++ If we don't receive a successful response, we'll retry the + delivery at increasing intervals: 3 minutes, 5 minutes, 30 minutes, + 1 hour, 6 hours, 1 day, 3 days, 7 days, 30 days. +
+Each webhook request includes:
+{JSON.stringify(SAMPLE_PAYLOAD, null, 2)}
+ {VERIFICATION_CODE}
+ {PYTHON_CODE}
+ This feature is in beta and may undergo changes. Use with caution in production environments.
++ Manage webhook notifications for your SMS events +
++ Create a webhook to receive real-time notifications for SMS events +
+ +
+ {children}
+
+ );
+}
\ No newline at end of file
diff --git a/web/components/ui/skeleton.tsx b/web/components/ui/skeleton.tsx
new file mode 100644
index 0000000..d7e45f7
--- /dev/null
+++ b/web/components/ui/skeleton.tsx
@@ -0,0 +1,15 @@
+import { cn } from "@/lib/utils"
+
+function Skeleton({
+ className,
+ ...props
+}: React.HTMLAttributes