This is the method that works fine through the web app..
myContract.methods.requestForgiveness(requestText).send({ from: address, value: weiValue, gas:1000000 }).
on('transactionHash', function(hash){
console.log(hash);
});
How should I call this with truffle console? Can anyone help?