Is there a way to set reporter to a non user so that users without a Jira account can enter an issue? I know I can set reporter using reporter accountId but can I specify a reporter by email address if they do not have an account?
If not, how do you keep track of who entered an issue if they do not have an account?
In that case, you can't. Either a reporter is anonymous or someone with a Jira account.
Sounds to me you want to use Jira Service Management capabilities. Here you can setup an email address and let people send emails to create an issue (request). Users will become customers (their email address will be recorded in Jira), but not use a Jira license.
Thanks. What field is the email address recorded in? I want to be able to see who is reporting stuff that is not a Jira user.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Steven Lloyd ,
Welcome to the community.
You should use a PUT with:
https://<your site>.atlassian.net/rest/api/latest/issue/<your issue key>
With headers:
{
"fields":{
"reporter":{"id": null}
}
}
That should do it.
Kind regards,
Rudy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I want to set the reporter, not the assignee. If there is not a user account, how can I record information about a non user - email, name, etc. ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My bad, just change assignee to reporter. Then you get this:
I'll update my original post.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I do not want it set it to anonymous, I want a way to record the email and name of a NON user.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.