You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I use scriptrunner to send custom notifications when solving a service request in the service desk project. The notification contains images corresponding to the user's satisfaction (from 1 to 5) and a picture of the reopen request.
I tried to use the link that is located in the corresponding transition button:
{getWorkflowButtons.call ()}
But when the user clicks on it, the user goes to the main page of the customer portal service desk.
Please tell me how you can create a link so that a user who only has customer access to the service desk project, when clicking on the reopen request image, everything works correctly?
I am not aware of a URL you can click that will cause the issue to transition automatically from the customer portal.
The customer portal option to transition an issue calls a rest API with a PUT method and some payload.
url: /rest/servicedesk/1/customer/requests/transition
payload: {issueKey: "ISV-2", transitionId: 11, comment: ""}
You could get fancy with using a custom rest api endpoint that accepts a get. But you'll have to make sure your api is smart enough to redirect to login page, then back to the API to trigger the transition then back to the issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.