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

Save Marketplace Integration

save Marketplace Integration.

The Marketplace exposes vendor connectors (CRMs, ERPs, finance and marketing tools) as ordinary callable functions over a uniform call shape, regardless of how the vendor's API works. This method creates the marketplace integration and returns its id.

This method is on the Hub surface (norbix.hub.code) — 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.code.saveMarketplaceIntegration();
using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;

using var client = new NorbixClient();

var result = await client.Code.SaveMarketplaceIntegrationAsync(new SaveMarketplaceIntegration());
from norbix_python import NorbixHub

norbix = NorbixHub()

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

var result map[string]any
err := c.Hub.Code.SaveMarketplaceIntegration(ctx, nil, &result)
import dev.norbix.sdk.hub.NorbixHub

val hub = NorbixHub()

val result = hub.code.saveMarketplaceIntegration(emptyMap())

In the dashboard

Manage this visually in Norbix Cloud — see Code → Marketplace.

API reference

Full request and response for this endpoint: Save Marketplace Integration.

Last updated