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

Get Webhook Integration

Gets the project's webhook integration.

The Webhooks module sends outbound HTTP callbacks to external systems when events happen in your project, with configurable destinations and delivery secrets. This method returns a single webhook integration by id.

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.getWebhookIntegration();
using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;

using var client = new NorbixClient();

var result = await client.Webhooks.GetWebhookIntegrationAsync(new GetWebhookIntegration());
from norbix_python import NorbixHub

norbix = NorbixHub()

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

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

final hub = NorbixHub();

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

In the dashboard

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

API reference

Full request and response for this endpoint: Get Webhook Integration.

Last updated