Hi,
I'm using JIRA REST api 6.3 and trying to update the assignee on a given issue,
I've managed to create issues, so i assume there is nothing wrong with my credentials and positing method.
I've tried both POST and PUT method on "https://<mycompany>.atlassian.net/rest/api/2/issue/<KEY>/editmeta" and "https://<mycompany>.atlassian.net/rest/api/2/issue/<KEY>" .
I've tried using "{ "fields" : { "assignee" :{"name" : "xxx\} } }" and
{ "update" : { "assignee" : [{"set" : {"name" : "xxx"} } ] } }
I always get the same response ...
{"The remote server returned an error: (405) Method Not Allowed."}
What am I doing wrong here, according to the documentation it should work ...
Regards,
Ofer s.Hai