Hi,
I have written a script to create projects with issues in Jira. The scrip uses this Python lib: https://jira.readthedocs.io/
My problem now is that I can't assign tickets anymore - I am getting this error:
„Konto-ID“ muss der einzige Abfrageparameter für die Identifizierung des Benutzers im strengen Modus der DSGVO
The script and also the assigning tickets to Jira users worked a few days earlier. Nothing change in the script. I am using the cloud version
The complete error I am getting:
Traceback (most recent call last):
File "create_templated_jira_projects.py", line 100, in <module>
jiraConnection.assign_issue("IM-102", "fhellriegel")
File "/usr/local/lib/python3.8/site-packages/jira/client.py", line 126, in wrapper
result = func(*arg_list, **kwargs)
File "/usr/local/lib/python3.8/site-packages/jira/client.py", line 1310, in assign_issue
r = self._session.put(
File "/usr/local/lib/python3.8/site-packages/jira/resilientsession.py", line 157, in put
return self.__verb('PUT', url, **kwargs)
File "/usr/local/lib/python3.8/site-packages/jira/resilientsession.py", line 147, in __verb
raise_on_error(response, verb=verb, **kwargs)
File "/usr/local/lib/python3.8/site-packages/jira/resilientsession.py", line 56, in raise_on_error
raise JIRAError(
jira.exceptions.JIRAError: JiraError HTTP 400 url: https://artusinteractive.atlassian.net/rest/api/latest/issue/IM-102/assignee text: „Konto-ID“ muss der einzige Abfrageparameter für die Identifizierung des Benutzers im strengen Modus der DSGVO sein.
response headers = {'Server': 'AtlassianProxy/1.15.8.1', 'Cache-Control': 'no-cache, no-store, no-transform', 'Content-Type': 'application/json;charset=UTF-8', 'Strict-Transport-Security': 'max-age=315360000; includeSubDomains; preload', 'Date': 'Fri, 14 Feb 2020 16:40:45 GMT', 'ATL-TraceId': 'f9dacc9dcd4bc8ae', 'X-AACCOUNTID': '557058%3A64cf2f49-35f7-4cad-8fde-2f232794794c', 'X-AREQUESTID': '4a1592ef-4336-438c-99b5-4da6181ec30b', 'X-XSS-Protection': '1; mode=block', 'Transfer-Encoding': 'chunked', 'Timing-Allow-Origin': '*', 'X-Content-Type-Options': 'nosniff', 'Connection': 'close'}
response text = {"errorMessages":["„Konto-ID“ muss der einzige Abfrageparameter für die Identifizierung des Benutzers im strengen Modus der DSGVO sein."],"errors":{}}Does anyone has an idea what is going on?
Thanx for help