For the complete documentation index, see llms.txt. This page is also available as Markdown.

Rotate Webhook Integration Secret

rotate 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. Handles the webhook integration secret.

This method is on the Hub surface (norbix.hub.webhooks) β€” call it from admin tooling or IaC.

These examples assume the SDK is installed and your credentials are set as environment variables β€” each client reads them automatically, so the constructors below take no arguments. See Install a Norbix SDK.

import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();

const result = await norbix.hub.webhooks.rotateWebhookIntegrationSecret();
using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;

using var client = new NorbixClient();

var result = await client.Webhooks.RotateWebhookIntegrationSecretAsync(new RotateWebhookIntegrationSecretRequest());
from norbix_python import NorbixHub

norbix = NorbixHub()

result = norbix.webhooks.rotate_webhook_integration_secret()
c, _ := norbix.New(norbix.Options{})
ctx := context.Background()

var result map[string]any
err := c.Hub.Webhooks.RotateWebhookIntegrationSecret(ctx, nil, &result)
import 'package:norbix/norbix_hub.dart';

final hub = NorbixHub();

final result = await hub.webhooks.rotateWebhookIntegrationSecret();

In the dashboard

Manage this visually in Norbix Cloud β€” see Webhooks β†’ Integration.

API reference

Full request and response for this endpoint: Rotate Webhook Integration Secret.

Last updated