Project

General

Profile

Constructing querystring for issue list - how to encode multiple select

Added by Jaap van Hengstum over 14 years ago

Hi. I'm trying to create a querystring for accessing an issue list using the GET method. I have the following url:

http://myserver/projects/foo/issues?set_filter=1&assigned_to_id=me&status_id=!3&per_page=100

which selects all the issues from project foo assigned to me and status IS NOT resolved.

I want to construct a query with a multiple select, like:

status IS NOT (resolved, closed, rejected, deffered)

Anyone can help me with that? Thanks.