I have created jira issue with create_issue method. Then need to update 'assignee' field and failed:
$key='CMS-1502';
$remoteIssue = $jira->update_issue( $key, { 'assignee' => $dev} );
I got:
soapenv:Server.userException, com.atlassian.jira.rpc.exception.RemotePermissionException: This issue does not exist or you don't have permission to view it. at jira-testUnix.pl line 114
Sounds like the user you are running this as does not have permissions to assign issues
That's from your first line. The exception you're getting actually tells us that your user doesn't have rights to view either. So I think you need to work on the user login and permissions...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.