Hi @imlimed
you will need a command like this curl call
curl -u user:password -X GET -H "Content-Type: application/json" http://localhost:8080/rest/api/2/search?jql=project%3DCOOL
you will need to formulate a JQL statement to get your required issues.
If you can, install REST API Browser to experiment with the params to the REST call
To include version criteria
e.g.
project = COOL AND affectedVersion in (1.0, 2.0)
use
http://localhost:8080/rest/api/2/search?jql=project%3DCOOL%20AND%20affectedVersion%20in%20(1.0%2C%202.0)&validateQuery=true
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.