Rotate Webhook Integration Secret
rotate Webhook Integration Secret.
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
API reference
Last updated