Reveal Webhook Integration Secret
reveal Webhook Integration Secret.
The Webhooks module sends outbound HTTP callbacks to external systems when events happen in your project, with configurable destinations and delivery secrets. Reveals the webhook integration secret.
This method is on the Hub surface (norbix.hub.webhooks) — call it from admin tooling or IaC.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.webhooks.revealWebhookIntegrationSecret();using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Webhooks.RevealWebhookIntegrationSecretAsync(new RevealWebhookIntegrationSecretRequest());from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.webhooks.reveal_webhook_integration_secret()c, _ := norbix.New(norbix.Options{})
ctx := context.Background()
var result map[string]any
err := c.Hub.Webhooks.RevealWebhookIntegrationSecret(ctx, nil, &result)import 'package:norbix/norbix_hub.dart';
final hub = NorbixHub();
final result = await hub.webhooks.revealWebhookIntegrationSecret();In the dashboard
Manage this visually in Norbix Cloud — see Webhooks → Integration.
API reference
Full request and response for this endpoint: Reveal Webhook Integration Secret.
Last updated