All Projects → caioagiani → mobizon-node

caioagiani / mobizon-node

Licence: MIT License
Biblioteca NodeJS para trabalhar com os serviços Mobizon API

Programming Languages

javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to mobizon-node

Vonage Php Sdk Core
Vonage REST API client for PHP. API support for SMS, Voice, Text-to-Speech, Numbers, Verify (2FA) and more.
Stars: ✭ 849 (+4894.12%)
Mutual labels:  messaging, sms
Vonage Node Sdk
Vonage API client for Node.js. API support for SMS, Voice, Text-to-Speech, Numbers, Verify (2FA) and more.
Stars: ✭ 323 (+1800%)
Mutual labels:  messaging, sms
scriptbox
Script box is a full VAS application for demonstrate kannel.js, shorty and smpp usage
Stars: ✭ 19 (+11.76%)
Mutual labels:  sms, gateway
text-sdk-php
PHP SDK to send messages with CM.com
Stars: ✭ 18 (+5.88%)
Mutual labels:  messaging, sms
Vonage Ruby Sdk
Vonage REST API client for Ruby. API support for SMS, Voice, Text-to-Speech, Numbers, Verify (2FA) and more.
Stars: ✭ 203 (+1094.12%)
Mutual labels:  messaging, sms
Vonage Java Sdk
Vonage Server SDK for Java. API support for SMS, Voice, Text-to-Speech, Numbers, Verify (2FA) and more.
Stars: ✭ 75 (+341.18%)
Mutual labels:  messaging, sms
Qksms
The most beautiful SMS messenger for Android
Stars: ✭ 3,519 (+20600%)
Mutual labels:  messaging, sms
Vonage Python Sdk
Vonage Server SDK for Python. API support for SMS, Voice, Text-to-Speech, Numbers, Verify (2FA) and more.
Stars: ✭ 134 (+688.24%)
Mutual labels:  messaging, sms
numspy
A python module for sending free sms as well as finding details of mobile number via website Way2sms.
Stars: ✭ 57 (+235.29%)
Mutual labels:  messaging, sms
guli-mall
尚硅谷-谷粒商城代码及文档https://www.yuque.com/zhangshuaiyin/guli-mall
Stars: ✭ 233 (+1270.59%)
Mutual labels:  sms, gateway
pulsar-helm-chart
Official Apache Pulsar Helm Chart
Stars: ✭ 122 (+617.65%)
Mutual labels:  messaging
RomanceBreaker
Python script which sends a custom morning message to your significant other every morning at a given time range on Facebook Messenger, WhatsApp, Telegram or SMS, for lazy people
Stars: ✭ 36 (+111.76%)
Mutual labels:  sms
hare
🐇 CLI tool for websockets and easy to use Golang package
Stars: ✭ 40 (+135.29%)
Mutual labels:  messaging
decent
Open source messaging platform for the modern web
Stars: ✭ 21 (+23.53%)
Mutual labels:  messaging
TradingMachine
TradingMachine is a mini-trading system simulation, whose components (market data and order feeds, FIX acceptor and initiator, back-end for filled orders) interact by queues and topics.
Stars: ✭ 26 (+52.94%)
Mutual labels:  messaging
OnePlayerSleepV3-Data-Pack
One Player Sleep Data Pack for Minecraft 1.13 to 1.16
Stars: ✭ 18 (+5.88%)
Mutual labels:  messaging
smallrye-reactive-messaging
SmallRye Reactive Messaging
Stars: ✭ 144 (+747.06%)
Mutual labels:  messaging
ucp
UCP protocol in Go
Stars: ✭ 40 (+135.29%)
Mutual labels:  sms
elvisp
Virtual ISP / IP tunnel daemon for cjdns.
Stars: ✭ 19 (+11.76%)
Mutual labels:  gateway
ui
UI for Mainflux IoT platform
Stars: ✭ 73 (+329.41%)
Mutual labels:  gateway

Mobizon

Biblioteca para comunicação API HTTP Mobizon SMS

GitHub language count GitHub top language GitHub repo size NPM downloads GitHub license

Instalação

Baixe o node em nodejs.org e instale-o, caso ainda não tenha,

Pacote: npm i mobizon-node ou yarn add mobizon-node

Configuração:

const { mobizon } = require('mobizon-node');

mobizon.setConfig({
  apiServer: 'https://api.mobizon.com.br',
  apiKey: 'br01xxxxxx',
  format: 'json',
});

Exemplos de uso

Confira em docs todos os response status code.

(async () => {
  /** Saldo */
  const getBalance = await mobizon.getBalance();

  console.log(getBalance);

  /** Encurtar URL */
  const createShort = await mobizon.createShort({
    data: {
      fullLink: 'https://mobizon.com.br',
      status: 1,
      expirationDate: '',
      comment: 'Shortened link.',
    },
  });

  console.log(createShort);

  /** Enviar SMS */
  const sendSms = await mobizon.sendSms({
    recipient: '5511941439844',
    from: '',
    text: 'SMS sent by Mobizon.',
  });

  console.log(sendSms);
})();

Dê uma olhada em examples para mais casos de uso.

Licença

Documentação pt-BR.
Copyright © 2021 caioagiani.
Este projeto é licenciado MIT.

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].