Is there a way to set the "Labels" field for a ticket when creating or updating a JIRA ticket using the SOAP API? A search for "label" in the WSDL reveals nothing, and when getting a ticket using the API which I know has labels set, there is no indication in the result that a label exists.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I'm pretty sure there's no method to do this in JiraSoapService http://docs.atlassian.com/rpc-jira-plugin/latest/com/atlassian/jira/rpc/soap/JiraSoapService.html ~Matt |
|||||
|
|
You can update the label of an existing issue using the field id 'labels'. Here is the code I'm using (C#):
|
|||
|
|
|
Try updating custom field id 10041. I looked forever and I finally found it. Here is sample code in python:
Hope that helps!! |
|||
|
|