1.0.9 • Published 11 months ago

pushalert-sdk v1.0.9

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

PushAlert.co SDK

This package provides an unofficial SDK for sending notifications using the PushAlert.co service. It allows users to send notifications to their subscribers using the PushAlert.co API.

Disclaimer: This SDK is an unofficial implementation for interacting with the PushAlert.co service. While efforts have been made to ensure its functionality and reliability, please note that it does not have official support or endorsement from PushAlert.co.

Installation

Install the package using npm:

npm install pushalert-sdk

Usage

Import the SDK class from the package

import SDK from 'pushalert-sdk';

Create an instance of the SDK by providing your PushAlert.co API key:

const apiKey = 'YOUR_API_KEY';
const sdk = new SDK(apiKey);

Sending Notifications

Currently supported APIs:

  1. sendToSingle: This API allows you to send a notification to a single subscriber.

  2. sendToAll: With this API, you can broadcast a notification to all subscribers.

  3. sendToMultiple: This API allows you to send notifications to multiple subscribers simultaneously.

  4. sendWithCustomAttributes: This API allows you to send notifications to multiple subscribers simultaneously with custom attributes.

  5. getStats: This API allows you to get the stats of your notification.

  6. deleteNotification: This API allows you to delete a scheduled notification.

1. Send to All Subscribers

To send a notification to all subscribers, use the sendToAll method:

const options = {
  title: 'Your Title',
  message: 'Your Message',
  icon: 'http://yourwebsite.com/icon.png',
  url: 'https://yourwebsite.com',
};

sdk.sendToAll(options)
  .then(response => {
    console.log('Notification sent successfully:', response);
  })
  .catch(error => {
    console.error('Error sending notification:', error);
  });

2. Send to a Single Subscriber

To send a notification to a single subscriber, use the sendToSingle method:

const options = {
  title: 'Your Title',
  message: 'Your Message',
  icon: 'http://yourwebsite.com/icon.png',
  url: 'https://yourwebsite.com',
  subscriber: 'SUBSCRIBER_ID',
};

sdk.sendToSingle(options)
  .then(response => {
    console.log('Notification sent successfully:', response);
  })
  .catch(error => {
    console.error('Error sending notification:', error);
  });

3. Send to Multiple Subscribers

To send a notification to multiple subscribers, use the sendToMultiple method:

const options = {
  title: 'Your Title',
  message: 'Your Message',
  icon: 'http://yourwebsite.com/icon.png',
  url: 'https://yourwebsite.com',
  subscribers: ['SUBSCRIBER_ID1', 'SUBSCRIBER_ID2'],
};

sdk.sendToMultiple(options)
  .then(response => {
    console.log('Notification sent successfully:', response);
  })
  .catch(error => {
    console.error('Error sending notification:', error);
  });

4. Send to Multiple Subscribers with Custom Attributes

To send a notification to multiple subscribers with custom attributes, use the sendWithCustomAttributes method:

sdk.sendWithCustomAttributes({
  title: 'Test Custom Attributes',
    message: 'Test Custom Attributes',
    url: 'https://www.yourwebsite.com/',
}).then((res) => {
  console.log("Response");
  console.log(res);
}
).catch((err) => {
  console.log(err);
}
);

5. Get Stats of a Notification

To get the stats of a notification, use the getStats method:

sdk.getStats({id: 'NOTIFICATION_ID'})
  .then(response => {
    console.log('Notification stats:', response);
  })
  .catch(error => {
    console.error('Error getting notification stats:', error);
  });

6. Delete a Scheduled Notification

To delete a scheduled notification, use the deleteNotification method:

sdk.deleteNotification({id: 'NOTIFICATION_ID'})
  .then(response => {
    console.log('Notification deleted successfully:', response);
  })
  .catch(error => {
    console.error('Error deleting notification:', error);
  });
1.0.9

11 months ago

1.0.8

11 months ago

1.0.7

12 months ago

1.0.6

12 months ago

1.0.5

12 months ago

1.0.4

12 months ago

1.0.3

12 months ago

1.0.2

12 months ago

1.0.1

12 months ago

0.0.1

12 months ago

1.0.0

12 months ago