Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Looking for a bulk update API to add fix versions to multiple issues at once.

ethan mcmeekin August 2, 2022

I'm trying to use the Jira API to update a list of jira issues with a fix version.

I've had limited success updating individual Issues with:

PUT /rest/api/2/issue/{IssueID}
body: 

{
    "update": {
        "fixVersions": [
            {
                "add": {"name""FixVersionX"}
            }
        ]
    }
}

However I don't want to have to loop through possibly hundreds of issues on a regular basis. Is there an API that would allow me to make this update to a list of Jira Issues by ID?

1 answer

0 votes
ethan mcmeekin August 2, 2022

just realized i probably should have created this on the jira software forum I've moved the question there - https://community.atlassian.com/t5/Jira-Software-questions/Looking-for-a-bulk-update-API-to-add-fix-versions-to-multiple/qaq-p/2096626#M209621 

Suggest an answer

Log in or Sign up to answer