Enable Payments
Enable payments service.
These endpoints turn the module on or off for your project. This method enables the module for your project.
This method is on the Hub surface (norbix.hub.payments) — call it from admin tooling or IaC.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.payments.enablePayments();using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Payments.EnablePaymentsAsync(new EnablePayments());from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.payments.enable_payments()c, _ := norbix.New(norbix.Options{})
ctx := context.Background()
var result map[string]any
err := c.Hub.Payments.EnablePayments(ctx, nil, &result)import 'package:norbix/norbix_hub.dart';
final hub = NorbixHub();
final result = await hub.payments.enablePayments();In the dashboard
Manage this visually in Norbix Cloud — see Payments → Module.
API reference
Full request and response for this endpoint: Enable Payments.
Last updated