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.
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())Dart / Flutter and Swift examples for this page are still in the works — we are verifying the exact SDK shapes and will add them shortly. The method itself is available in every Norbix SDK.
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