Freshdesk Sample Payload array of objects
问题 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(