Preview Sms Notification
Returns SMS preview notification body.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.notifications.previewSmsNotification({
hash: 'a1b2c3d4e5f6',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Notifications.PreviewSmsNotificationAsync(new PreviewSmsNotification
{
Hash = "a1b2c3d4e5f6",
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.notifications.preview_sms_notification(
hash="a1b2c3d4e5f6",
)In the dashboard
API reference
Last updated