Hi all,
Currently I am using Zendesk Trial Suite Professional Plan and I am using the below mentioned java method from URL: https://developer.zendesk.com/documentation/ticketing/api-clients/java/#java
and It is internally calling the API:
GET /api/v2/tickets
to fetch the ticket details. So Does the same java method or mentioned API work for all the support plans. Suppose, If I want to get ticket details for Zendesk Enterprise plan, Does the same work?
".getTickets()"
Public Iterable<Ticket> getTickets() {
return new PagedIterable<>(cnst("/tickets.json"), handleList(Ticket.class, "tickets"));
}