import Telnyx from 'telnyx';const client = new Telnyx({ apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted});const template = await client.whatsapp.templates.create({ category: 'MARKETING', components: [{ foo: 'bar' }], language: 'language', name: 'name', waba_id: 'waba_id',});console.log(template.data);
import Telnyx from 'telnyx';const client = new Telnyx({ apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted});const template = await client.whatsapp.templates.create({ category: 'MARKETING', components: [{ foo: 'bar' }], language: 'language', name: 'name', waba_id: 'waba_id',});console.log(template.data);