All Projects → azemoh → jusibe

azemoh / jusibe

Licence: MIT license
📲 JavaScript client for Jusibe.com SMS API service. http://jusibe.com

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to jusibe

sypht-golang-client
A Golang client for the Sypht API
Stars: ✭ 33 (+37.5%)
Mutual labels:  api-client
servicenow
A golang client for ServiceNow
Stars: ✭ 16 (-33.33%)
Mutual labels:  api-client
sevenbridges-python
SevenBridges Python Api bindings
Stars: ✭ 41 (+70.83%)
Mutual labels:  api-client
lpconnector
Python client for syncing LastPass Enterprise with a remote directory over LDAP
Stars: ✭ 14 (-41.67%)
Mutual labels:  api-client
matrix-pstn-bridge
☎️ A Matrix Puppet bridge for the public telephone network that supports a number of VoIP providers (Twillo, Vonage, etc.). Sends and receives voice and SMS.
Stars: ✭ 25 (+4.17%)
Mutual labels:  sms
sbankenclient-ios
A small but enjoyable iOS framework to connect to the Sbanken API
Stars: ✭ 21 (-12.5%)
Mutual labels:  api-client
smsender
A Go server for sending SMS
Stars: ✭ 32 (+33.33%)
Mutual labels:  sms
mouth
Simple adapter based SMS sending library
Stars: ✭ 29 (+20.83%)
Mutual labels:  sms
fb-messenger-bot-api
NodeJS Facebook Messenger API for bots to send messages and setup events to Facebook.
Stars: ✭ 29 (+20.83%)
Mutual labels:  api-client
notion-sdk-py
Official Notion SDK rewritten in Python (sync + async)
Stars: ✭ 753 (+3037.5%)
Mutual labels:  api-client
adyen-python-api-library
Adyen API Library for Python
Stars: ✭ 41 (+70.83%)
Mutual labels:  api-client
totalvoice-node
Client em NodeJS para API da Totalvoice
Stars: ✭ 54 (+125%)
Mutual labels:  sms
chess.com
Python wrapper for Chess.com Published-Data API
Stars: ✭ 34 (+41.67%)
Mutual labels:  api-client
module-twilio
Magento 2 Customer SMS notifications with Twilio
Stars: ✭ 29 (+20.83%)
Mutual labels:  sms
FreeMobileSMS
🐍📲 Python client to send SMS via french mobile operator Free Mobile
Stars: ✭ 22 (-8.33%)
Mutual labels:  sms
AlphaVantage.Net
.Net client library for Alpha Vantage API
Stars: ✭ 65 (+170.83%)
Mutual labels:  api-client
upcloud-php-api
PHP client for UpCloud's API
Stars: ✭ 23 (-4.17%)
Mutual labels:  api-client
deepl-api-connector
Connector library for deepl.com rest translation api
Stars: ✭ 12 (-50%)
Mutual labels:  api-client
psd2
API client for banks supporting PSD2 APIs with OAuth2 authentication.
Stars: ✭ 26 (+8.33%)
Mutual labels:  api-client
airtabler
R interface to the Airtable API
Stars: ✭ 84 (+250%)
Mutual labels:  api-client

Jusibe Node.js Client

JavaScript client for Jusibe.com SMS API service

NPM version Build Status Code Climate GitHub stars

Installation

npm install jusibe

Usage

var Jusibe = require('jusibe');

var jusibe = new Jusibe("YOUR_JUSIBE_PUBLIC_KEY", "YOUR_JUSIBE_ACCESS_TOKEN");

Check SMS Credits

jusibe.getCredits()
  .then(res => {
    console.log(res.body)
  })
  .catch(err => {
    console.log(err.body);
  });

Send SMS

var payload = {
  to: '080XXXXXXXX',
  from: 'Jusibe Joe',
  message: 'Hello From the other side 😎\nI must have called a thousand times.'
};

jusibe.sendSMS(payload)
  .then(res => {
    console.log(res.body);
  })
  .catch(err => {
    console.log(err.body);
  });

Check SMS status

jusibe.deliveryStatus('eq16v6vd26')
  .then(res => {
    console.log(res.body);
  })
  .catch(err => {
    console.log(err.body);
  });

License

Available as open source under the terms of the MIT License.

npm package

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].