I'm quite new to using JIRAs API, but basically, long story short, i need to get all the issues that have a fixVersion of x.x.x
How would i achieve this (I'll be using NodeJS)?
Hello,
You would need to use the search Rest Api method:
This method has the JQL parameter. You can pass any valid JQL query. For example:
fixVersion = yourversion
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just a little extra context, I decided to use the npm package jira-connector`
That way its as simple as :
let query = {
jql: 'fixVersion = 1.2.0',
maxResults: 100,
startAt: 0,
fields: [
'summary',
'description'
],
fieldsByKeys: false
}
jira.search.search(query, (err, issues) => { console.log(issues) }
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.