Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi,
I have a REST Endpoint that read from an external API to get values into jira service desk portal request fields based on the user submitting the request. It works fine for the most part since the reporter field is the current user logged in and submitting the request. So, this little piece of code I have in the REST Endpoint accomplish what I want:
ApplicationUser loggedInUser = ComponentAccessor.getJiraAuthenticationContext().loggedInUser
def email = loggedInUser.getEmailAddress()
However, when an agent is submitting a request thru the portal, they could potentially submit a request on behalf of another user, so how do I access the value of the "Raise this request on behalf of" field in the REST Endpoint?
Thank you in adavance!
What is your link between the issue and the REST endpoint? How are you calling it?
It this something being called by a behaviour? Or in a post-function?
Wherever you have your issue object is where you'll need to get the reporter.
Then when calling the rest endpoint, you can include the reporter's details with the request data.
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.