0

How can I get all the tickets in UserVoice version 2 with the C# wrapper classes? I have gotten them in v1 with the API call

var response = client.Get("/api/v1/tickets.json");

v1 link to the call.

How is it possible to do this in v2? I have tried using their Message, MessageResponse, SuggestionActivityEntryResponse, and Ticket classes as well as making calls on the client variable like in v1.

A_Arnold
  • 3,195
  • 25
  • 39

1 Answers1

1

I believe the v2 API does not currently support it, you should generally fall back to the v1 API as v2 is a Beta.

LW001
  • 2,452
  • 6
  • 27
  • 36