¿Como Integrar Hybschat A WiMovil?

¿Como Integrar hybschat a WiMovil?


¿Como Integrar hybschat a WiMovil?

Vídeo de explicación:

...

1.  Ingresa al Dashboard de tu wimovil y dirígete a Ajustes y Configuración:

2. Dirigete a la opción de Whatsapp:

3. Activar el modulo y elige la opción "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. Token: Borrar si existe algun dato y dejar vacio:

3. Parámetros:

to=(destinatario)&message=(mensaje)&appkey=1345261c-7447-4b5e-8ce8-fr56539d4d68&authkey=cy8lpsjagvQpfMvf6yEVv2gpsZHCNNpujrLtOJsvg56na6qUx9

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': '1345261c-7447-4b5e-8ce8-fr56539d4d68',
    'authkey': 'cy8lpsjagvQpfMvf6yEVv2gpsZHCNNpujrLtOJsvg56na6qUx9',
    'to': 'RECEIVER_NUMBER',
    'message': 'Example message'
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});

4. Método: POST

5. Content Type: application/json

6. Formato código de país: 0051.

Finalmente click en Aplicar, ya puede utilizar.