Hello,
We have created a"User Picker" in our Jira tenant. We have a service to trigger issue creation. How do we assign an actual user to this field? We have the firstname, lastname and email available in our implementation.
Is there an email lookup , something like
getUserByFullName("Jane Doe");
Are you talking about an external service to create the issue? If so, I'd recommend checking out endpoint. You'll need to look up the UUID of a user before you can use them in a JSON payload.
@Kian Stack Mumo Systems yes, we have our own warpper jira service that we use to create tickets based on our business need. Let me take a look at the end-point.
Thanks for the response.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Kian Stack Mumo Systems looked into this and this is not what we are looking for. We need to populate a custom field (which is a user type field) with a value
e.g customfield_10077 =getUserByFullName("Jane Doe");
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Mithil Deshmukh,
That end point is simply to get the UUID of the user by searching their display name or email address.
Once you have that, you can set the value of a custom field inside of the create issue endpoint.
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.