Attach File To Template
Attach a file to an email template.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.notifications.attachFileToTemplate({
templateId: 'tmpl_4kX9mQvR2tYw7ZbC1dFgHj',
language: 'en',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Notifications.AttachFileToTemplateAsync(new AttachFileToTemplateRequest
{
TemplateId = "tmpl_4kX9mQvR2tYw7ZbC1dFgHj",
Language = "en",
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.notifications.attach_file_to_template(
templateId="tmpl_4kX9mQvR2tYw7ZbC1dFgHj",
language="en",
)In the dashboard
API reference
Last updated