Disable Payments
Disable payments service.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.payments.disablePayments();using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Payments.DisablePaymentsAsync(new DisablePayments());from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.payments.disable_payments()c, _ := norbix.New(norbix.Options{})
ctx := context.Background()
var result map[string]any
err := c.Hub.Payments.DisablePayments(ctx, nil, &result)import 'package:norbix/norbix_hub.dart';
final hub = NorbixHub();
final result = await hub.payments.disablePayments();In the dashboard
API reference
Last updated