Hi
We have requirement to get the list of issues assigned to a sprint with a specific label URGENT to merge the code in bit bucket with the associated tickets. To build and deploy the code.
JIRA used is cloud platform and the url is like https://companyname.atlassian.net
We are trying to do this as a part of cicd from jenkins
Hello,
You could use Jira Rest API:
You should send a JQL like this:
labels = URGENT
<url part>/search?jql=labels%3DTalent%20and%20status%3D2
You should pass the whole JQL for the jql parameter
jql=lables=Talent and status=2
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try the advanced search (jql)
sprint = X and label = Y
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi
Thank you for the quick help.
I am new to the Rest API stuff, But created a seach result like the below
https://domain.atlassian.net/rest/api/3/search?project=10003&jql=labels=Talent&jql=status=2.
But the response shows all the statuses available instead of the desired status.
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.