¿Como Integrar hybschat a Mikrowisp?

¿Cómo integrar hybschat a Mikrowisp?


¿Cómo integrar hybschat a Mikrowisp?

Vídeo de explicación:

1. Ingresa al Dashboard de tu Microwisp y dirige a Ajustes

2. Dirigete a la opción de SMS

3. Elige la opción Gateway Genérico

4. Ingresa los datos según indica al infografía

Ingresa tus datos según los siguientes detalles: 

1. URL Gateway: https://chat.hybs.pe/api/create-message

2. Parámetros: 

to=51{destinatario}&message={mensaje}&appkey=d0fa5e09-5618-435e-9747-cffd50145ef2&authkey=71btP0Tox24zjsA3eXnu8tiedqpcrs8kT20Y74b56LdfdA4ca7

Los datos de acuerdo a tu API REST:

Text Message Only

var request = require('request');
var options = {
  'method': 'POST',
  'url': 'https://chat.hybs.pe/api/create-message',
  'headers': {
  },
  formData: {
    'appkey': 'd0fa5e09-5618-435e-9747-cffd50145ef2',
    'authkey': '71btP0Tox24zjsA3eXnu8tiedqpcrs8kT20Y74b56LdfdA4ca7',
    'to': 'RECEIVER_NUMBER',
    'message': 'Example message'
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});

3. Método: POST

4. Token Authorization Bearer: Dejar vacio.

5. Límite carácteres: Ingresa la cantidad de texto que deseas enviar en cada mensaje.

6. Pausa Entre mensaje: Se recomienda 2 segundos.

7. Activar Gateway y Guardar.