database.pool.query('SELECT `e-mail` AS email, LOWER(p.Codigo) AS countryCode FROM Clientes AS c JOIN Paises AS p ON p.id = c.Id_Pais WHERE Id_Cliente = ?',[request.params.userId],function(error,qryRs){
if(qryRs.length==0)
returnresponse.json({data:{message:'Client not found'}});