You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello everyone!
I need to update the field through the api, which is tracked by roles, to be more precise, the field is divided into 2 roles: developer and tester, and I want to update only the developer field, for example. Is there any way I can do this with python requests? I didn't find an answer to this question in the documentation.
Hi,
Welcome to the communty
What do you mean by "the field is divided into 2 role" ? There is only two project role that can edit the field ?
If you need to update an issue using the API you can do it using this
https://docs.atlassian.com/software/jira/docs/api/REST/9.3.0/#api/2/issue-editIssue
the field that I need to change looks like this
"customfield": [
"Role: Developer (240(4m) | 240(4m))",
"Role: Tester (null | null)"
]
and I want to update only the developer's time like
curl \ -D- \ -u user:password \ -X PUT \ --data "{'fields': {'customfield': ['Role: Developer (300(5m) | 300(5m))', 'Role: Tester (null | null)']}}" \ -H "Content-Type: application/json" \ https://jira-url/rest/api/2/issue/issue-1111
but i get internal error, other customfields are successfully updated this way
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.