.NET API Client - Get tags for all tickets

Hello,

I am trying to create a list with all tickets and their tags.

Is there a more convenient way to get the tags of every ticket than to use the method

tagClient.GetTagListAsync(“Ticket”, ticket.Id);

which only returns the tags of a single ticket.

I can get the complete list of tags with GetTagListAdminAsync() but i can’t find a reference to the tags of a ticket in the Ticket-object. I don’t think that it’s a good idea to send thousands of requests to get the tags to all of the tickets but i don’t see another way right now.

Thanks for your help in advance.

There is no endpoint that provides a tag list with all referenced tags.
You have to search for tickets and their tags, however, this will be troublesome with more than 50 hits.