How to get description text of the whole ticket thread rather than only the first ticket that was raised , I need the thread details as well

 const ticketData = await client.data.get('ticket');
 const {
   ticket: { description_text }
 } = ticketData;

I want to get the whole thread rather than only the first one , can someone tell me how to do that?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.