Hello. I'm developing a little web-application, which exports tickets via API to CSV file. I need also to export Ticket Comments for those tickets. I can read Tickets via (GET api/v2/tickets) request, but, to read ticket comments i should do (GET api/v2/tickets/{ticket_id}/comments) for each ticket. If I have 10 000 tickets, for example, I should do 10 000 requests through cycle. This is bad decision in two reasons: such cycle will eat much resources of my server and make 10 000 requests to your server, which will look like DDOS attack. Will be good feature, if you add a "comment" field to all tickets in the response for (GET api/v2/tickets) request or if you add API route to read all comments in one request with some key, related to each ticket
Login to the community
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.