Okay so i am making a page where i can see the details from all the issues in a version. But i dont know how to get all the issues from a version. I work in php and i know i need the issue key to get the information. So the problem is how i want to get the issue keys from a version.
Hi @jelle van den broek -- Welcome to the Atlassian Community!
To do this from outside of Jira, you could create an application calling the REST API with a JQL statement, such as:
fixVersion IN (yourTargetVersion)
Kind regards,
Bill
Thank you very much for your quick response. I'm trying this now: https://domain.atlassian.net/rest/api/2/search?jql=version=versionname But then I get the error that the field version does not exist.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
damn im dumb. like you said i need to use fixVersion. Now it works thx a lot
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
now the big question is how can i do this in php laravel
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That, I cannot answer. I suggest waiting for others in this community to respond, doing an internet search, and possibly checking in the developer community for similar questions: https://community.developer.atlassian.com/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i found out how to do it in laravel!!!!
$issueService = new IssueService();
$issueparam = $issueService->search( 'fixVersion = versionname' );
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Want to make your everyday Community actions directly contribute to reforestation? The Atlassian Community can achieve this goal by liking a post, attending an ACE, sending your peers kudos, and so much more!
Help us plant more trees
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.