centinela-client
v1.1.8
Published
Para enviar un request, se debe envíar un body con el siguiente formato: <br> const body = { <br> email: "[email protected]", <br> password: "123123", <br> idUser : 4, <br> idCompany : 1, <br> title : "error", <br> developer : "",
Downloads
8
Readme
centinela-client
Para enviar un request, se debe envíar un body con el siguiente formato: const body = { email: "[email protected]", password: "123123", idUser : 4, idCompany : 1, title : "error", developer : "", description: "This is a test error created from API", severity : 1 } Además se debe obtener el token provisto en la web. Para utilizar el sdk, se debe realizar de la siguiente forma:
const centinelaClient = require('centinela-client');
console.log(centinelaClient)
const body = { email: "[email protected]", password: "123123", idUser : 4, idCompany : 1, title : "error", developer : "", description: "This is a test error created from API", severity : 1 } const token = 'eyJhbGciOiJIU.....'; centinelaClient(body, token);