Enable Sms
Enable SMS service.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.notifications.enableSms();using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Notifications.EnableSmsAsync(new EnableSms());from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.notifications.enable_sms()c, _ := norbix.New(norbix.Options{})
ctx := context.Background()
var result map[string]any
err := c.Hub.Notifications.EnableSms(ctx, nil, &result)import 'package:norbix/norbix_hub.dart';
final hub = NorbixHub();
final result = await hub.smsNotifications.enableSms();In the dashboard
API reference
Last updated