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.
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.