notizy
v0.0.1
Published
Official Notizy SDK for Node.js
Downloads
155
Readme
Notizy Node.js SDK
Node.js library for the Notizy API.
Installation
npm install notizy
# or
pnpm add notizy
# or
yarn add notizySetup
import { Notizy } from "notizy";
const notizy = new Notizy("n_xxxxxx...xxxx"); // your api keyUsage
const { data } = await notizy.whatsapp.send({
phone_number_id: "xxxxxxxx",
to: "+1234567890",
template_id: "xxxxxxxxx",
language_code: "en",
components: [
{
type: "body",
parameters: [
{
type: "text",
text: "John Doe",
},
],
},
],
});
console.log(`Message ${data.id} has been sent`);