I am not quite sure what is the requirement here, could you please rephrase your question with an example?
For each build jira issues has been attached and it will be display in issues tab on the bamboo builds we want to capture those jira I'd and tasks in text or csv file is this possible
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
refer bamboo REST API doc - https://docs.atlassian.com/bamboo/REST/5.5.0/#d2e757
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Rob hit I am able to see the jira as issue key and jira summary is there any way to download those two values alone if that is done we are good could you please help us
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How about using below REST API:
curl -X GET --user username:password -H 'X-Atlassian-Token: no-check' "http://localhost:8085/rest/api/latest/result/PF-AT-16?expand=jiraIssues"
Where "PF-AT-16" is the plan key and build number.
The above will give you the Jira issues linked to the build number.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Mind that HTTP basic authentication with username and password has been deprecated. You should use a personal access token as a Bearer
credential in an HTTP Authorisation
header.
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.