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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.