Tanton
NNovu
•Created by Tanton on 3/28/2025 in #💬│support
Creating layouts with novu-dotnet 0.6
Still the same error:
public async void CreateLayoutTest()
{
var layoutCreateData = new LayoutCreateData()
{
Name = "layoutName",
Description = "",
Content = "Hello, {{ firstName }}! Please, take a look at {{{body}}}.",
Variables =
[
new TemplateVariable() { Name = "firstName", DefaultValue = "", Type = TemplateVariableTypeEnum.String },
new TemplateVariable() { Name = "body", DefaultValue = "", Type = TemplateVariableTypeEnum.String }
]
};
var response = await novuClient.Layout.Create(layoutCreateData);
var laoyt = response.Data;
Assert.NotNull(laoyt);
}
Do I have to add it as "body" or as "{{{body}}}"? And what about the other variables? Should I use "{{ variable_name }}" or "{{{variable_name}}}". It is not clear..
Use case of creating workflow using API: if we decide not to use the Workflow Editor.
4 replies