How to get the details of fix version using fix version name?
I know I can get the details of all the fix version using below mentioned rest API
rest/api/2/project/{project Name}/versions/.
But I want to get the details of specific fix version. is there any API?
or I need to iterate through response
It should be possible by either expanding some fields or by using /rest/api/2/search endpoint.
However, what kind details are you trying to get for a specific version?
Cheers,
Dario
Every fixversion has details like released:true, releaseDate.
I want to extract these value using rest. I know I can do if I know internal ID of fixversion but how I can get these details by using name of fixversion.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As documented you can only use the version ID:
- https://docs.atlassian.com/jira/REST/cloud/#api/2/version
You cannot use the name since different releases in differerent projects can have the same name/version.
One thig you can do is to call rest/api/2/project/{project Name}/versions/, search for the release name, get the ID and then call /rest/api/2/version/{id}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
that is what I am doing but as my project has more than 1000 fix version so it is quite slow to iterate through all.
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.