¿Como Integrar hybschat a Wisphup?
¿Como Integrar hybschat a Wisphup?
¿Como Integrar hybschat a Wisphup?
Vídeo de explicación:
1. Ingresa al Dashboard de tu wisphup y dirígete a Ajustes:
2. Dirigete a la opción de SMS:
3. Elige la opción Whatasapp Genérico y dar click en editar:
4. Ingresa los datos según indica al infografía.
Ingresa tus datos según los siguientes detalles:
1. Versión: V1
2. URL Gateway: https://chat.hybs.pe/api/create-message
3. Parámetros (payload):
to={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);
});
4. Método: POST
5. Usar HTTPS: Si
6. Token de Autorización: Dejar vacio.
7. Content Type: application/json
8. Usar Código de País: Si
9. Código de País: Indica tu país.
10. Limite de Carácteres: Ingresa la cantidad que enviaras en tus mensajes.
11. Activar Pasarela: Si
Finalmente click en guardar, ya puede utlizar.