Create Sms Template
Create SMS template.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.notifications.createSmsTemplate({
templateName: 'orders',
translations: ['item-1'],
description: 'Managed via the Norbix SDK.',
tags: ['orders', 'reports'],
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Notifications.CreateSmsTemplateAsync(new CreateSmsTemplateRequest
{
TemplateName = "orders",
Translations = new[] { "item-1" },
Description = "Managed via the Norbix SDK.",
Tags = new[] { "orders", "reports" },
});In the dashboard
API reference
Last updated