freshdesk

Freshdesk Sample Payload array of objects

只谈情不闲聊 提交于 2020-01-25 08:50:06
问题 I had this code that works if simple string is called $(document).ready( function() { app.initialized() .then(function(_client) { var client = _client; client.events.on('app.activated', function() { client.data.get('ticket') .then(function(data) { $('#issue_title').text("Issue:" + data.ticket.description); }) .catch(function(e) { console.log('Exception - ', e); }); }); }); }); But when I change it to array object it doesnt work $(document).ready( function() { app.initialized() .then(function(

SSIS - REST API for Freshdesk

浪尽此生 提交于 2020-01-25 05:04:30
问题 I tried searching something here but nothing seems to fit my need. I created an SSIS package that runs a report -> Attaches it to an email and send it to a bunch of people, many times (different recipients, different files). Due to Zapier limitations I can't create a FreshDesk ticket with attachments and that is for me a must to have so I'm exploring FreshDesk API, but I'm no c# developer. I found some examples online and now I'm trying to fit this code: FreshSamples C-Sharp Create Ticket