> For the complete documentation index, see [llms.txt](https://docs.codemash.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.codemash.io/sdks-and-cli/webhooks/destinations/save-webhook-destination.md).

# Save Webhook Destination

A **webhook destination** is an external URL Norbix calls when a subscribed event fires. This method creates the webhook destination and returns its id.

This method is on the **Hub** surface (`norbix.hub.webhooks`) — call it from admin tooling or IaC.

{% hint style="info" %}
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](/sdks-and-cli/install.md).
{% endhint %}

{% tabs %}
{% tab title="JavaScript / TypeScript" %}

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

const result = await norbix.hub.webhooks.saveWebhookDestination({
  destinationName: 'orders',
  endpointUrl: 'https://api.example.com/hooks/orders',
  selectedEvents: ['item-1'],
  isEnabled: true,
});
```

{% endtab %}

{% tab title=".NET" %}

```csharp
using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;

using var client = new NorbixClient();

var result = await client.Webhooks.SaveWebhookDestinationAsync(new SaveWebhookDestinationRequest
{
    DestinationName = "orders",
    EndpointUrl = "https://api.example.com/hooks/orders",
    SelectedEvents = new[] { "item-1" },
    IsEnabled = true,
});
```

{% endtab %}

{% tab title="Python" %}

```python
from norbix_python import NorbixHub

norbix = NorbixHub()

result = norbix.webhooks.save_webhook_destination(
    destinationName="orders",
    endpointUrl="https://api.example.com/hooks/orders",
    selectedEvents=["item-1"],
    isEnabled=True,
)
```

{% endtab %}

{% tab title="Go" %}

```go
c, _ := norbix.New(norbix.Options{})
ctx := context.Background()

var result map[string]any
err := c.Hub.Webhooks.SaveWebhookDestination(ctx, map[string]any{
	"destinationName": "orders",
	"endpointUrl": "https://api.example.com/hooks/orders",
	"selectedEvents": []string{"item-1"},
	"isEnabled": true,
}, &result)
```

{% endtab %}

{% tab title="Dart / Flutter" %}

```dart
import 'package:norbix/norbix_hub.dart';

final hub = NorbixHub();

final result = await hub.webhooks.saveWebhookDestination(body: {
  'destinationName': 'orders',
  'endpointUrl': 'https://api.example.com/hooks/orders',
  'selectedEvents': ['item-1'],
  'isEnabled': true,
});
```

{% endtab %}

{% tab title="Swift" %}

```swift
import NorbixSwift

let client = Norbix()

let result = try await client.hub.webhooks.saveWebhookDestination([
    "destinationName": "orders",
    "endpointUrl": "https://api.example.com/hooks/orders",
    "selectedEvents": ["item-1"],
    "isEnabled": true,
])
```

{% endtab %}

{% tab title="Kotlin" %}

```kotlin
import dev.norbix.sdk.hub.NorbixHub

val hub = NorbixHub()

val result = hub.webhooks.saveWebhookDestination(mapOf(
    "destinationName" to "orders",
    "endpointUrl" to "https://api.example.com/hooks/orders",
    "selectedEvents" to listOf("item-1"),
    "isEnabled" to true,
))
```

{% endtab %}

{% tab title="CLI" %}

```sh
norbix raw '/{version}/webhooks/destinations' -X POST --body '{"destinationName":"orders","endpointUrl":"https://api.example.com/hooks/orders","selectedEvents":["item-1"],"isEnabled":true}'
```

{% endtab %}
{% endtabs %}

## In the dashboard

Manage this visually in Norbix Cloud — see [Webhooks → Destinations](/other-topics/triggers.md).

## API reference

Full request and response for this endpoint: [Save Webhook Destination](/api-reference/webhooks/destinations/save-webhook-destination.md).
