@nozify/client
v0.7.185
Published
Nozify Client
Downloads
1
Maintainers
Readme
Nozify Node Client
Getting Started
You can find the Nozify Client documentation on documentation site.
Check out the Getting Started page for a quick overview.
Requirements
This package supports Node v14 and higher. It's highly recommended to use the latest LTS version of node, and the documentation is written using syntax and features from that version.
Installation
Use your favorite package manager to install any of the packages and save to your package.json
:
$ npm install @nozify/client
# Or, if you prefer yarn
$ yarn add @nozify/client
Examples
import { NozifyClient } from '@nozify/client';
const client = new NozifyClient(process.env.NOZIFY_API_KEY);
client
.sendNotification({
title: "Notification title",
body: "hellow",
recipientPhone: ["+123456789"],
type: NotificationType.APPOINTMENT,
}).then((response)=>{
console.log("Your resonse :", response)
});
Getting Help
If you get stuck, we're here to help. The following are the best ways to get assistance working through your issue:
- Email us in Nozify developer support:
[email protected]
License
Copyright (C) 2022-present Nozify LLC.
Nozify Client licensed under the MIT license.