I using node-zendesk package to create ticket on zendesk platform. It has created the ticket successfully on the zendesk platfrom. But unable to send the html content through below code. So how to pass the html content on the zendesk api.
var ticket = {
"ticket":
{
"subject":subject,
"comment": {
"body": "<p>Hello</p>"
}
}
};
client.tickets.create(ticket, (err, req, result)=> {
if (err) {
console.log('client.tickets.create-err', err);
return;
}
})