Using JIRA version 4.2. With Python 2.7 and suds 0.4, how can I create an issue with assignee field set? The assignee field gets ignored in the code below.
new_issue = client.service.createIssue(auth, {
'project': 'NAHLP',
# issue_type = Incident Report.
'type': '11',
'assignee': 'assignee_username',
'priority': '2',
'summary': 'summary',
'description': 'description',
'customFieldValues': [
# Reporter Location = NA.
{'customfieldId':'customfield_10019', 'values':['10011']},
]
})
I know that you can update the issue with an assignee (see my answer) but I want to assign the issue when creating it. Is this possible?
Note: All our usernames are the users' email addresses and contain '@' and '.' symbols.