@@ -25,12 +25,12 @@ public Task<IList<Ticket>> GetTicketListAsync()
2525
2626 public Task < IList < Ticket > > GetTicketListAsync ( int page , int count )
2727 {
28- return GetAsync < IList < Ticket > > ( "/api/v1/tickets" , $ "? page={ page } ,per_page={ count } ") ;
28+ return GetAsync < IList < Ticket > > ( "/api/v1/tickets" , $ "page={ page } ,per_page={ count } ") ;
2929 }
3030
3131 public Task < IList < Ticket > > SearchTicketAsync ( string query , int limit )
3232 {
33- return GetAsync < IList < Ticket > > ( "/api/v1/tickets/search" , $ "? query={ query } &limit={ limit } &expand=true") ;
33+ return GetAsync < IList < Ticket > > ( "/api/v1/tickets/search" , $ "query={ query } &limit={ limit } &expand=true") ;
3434 }
3535
3636 public Task < Ticket > GetTicketAsync ( int id )
@@ -64,7 +64,7 @@ public Task<IList<TicketArticle>> GetTicketArticleListAsync()
6464
6565 public Task < IList < TicketArticle > > GetTicketArticleListAsync ( int page , int count )
6666 {
67- return GetAsync < IList < TicketArticle > > ( "/api/v1/ticket_articles" , $ "? page={ page } ,per_page={ count } ") ;
67+ return GetAsync < IList < TicketArticle > > ( "/api/v1/ticket_articles" , $ "page={ page } ,per_page={ count } ") ;
6868 }
6969
7070 public Task < IList < TicketArticle > > GetTicketArticleListForTicketAsync ( int ticketId )
@@ -98,7 +98,7 @@ public Task<IList<TicketPriority>> GetTicketPriorityListAsync()
9898
9999 public Task < IList < TicketPriority > > GetTicketPriorityListAsync ( int page , int count )
100100 {
101- return GetAsync < IList < TicketPriority > > ( "/api/v1/ticket_priorities" , $ "? page={ page } ,per_page={ count } ") ;
101+ return GetAsync < IList < TicketPriority > > ( "/api/v1/ticket_priorities" , $ "page={ page } ,per_page={ count } ") ;
102102 }
103103
104104 public Task < TicketPriority > GetTicketPriorityAsync ( int id )
@@ -132,7 +132,7 @@ public Task<IList<TicketState>> GetTicketStateListAsync()
132132
133133 public Task < IList < TicketState > > GetTicketStateListAsync ( int page , int count )
134134 {
135- return GetAsync < IList < TicketState > > ( "/api/v1/ticket_states" , $ "? page={ page } ,per_page={ count } ") ;
135+ return GetAsync < IList < TicketState > > ( "/api/v1/ticket_states" , $ "page={ page } ,per_page={ count } ") ;
136136 }
137137
138138 public Task < TicketState > GetTicketStateAsync ( int id )
0 commit comments