const template = await client.whatsappAccounts.createTemplate(
accountId,
wabaId,
{
name: 'order_update',
category: 'UTILITY',
language: 'en',
components: [
{
type: 'HEADER',
format: 'TEXT',
text: 'Order Update',
},
{
type: 'BODY',
text: 'Hi {{1}}, your order {{2}} is now {{3}}.',
example: {
body_text: [['John', 'ORD-123', 'shipped']],
},
},
{
type: 'FOOTER',
text: 'Thanks for shopping with us!',
},
],
}
);