Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,552,361
Community Members
 
Community Events
184
Community Groups

How to change statuses from email without authorization or Jira license?

Have you ever wanted to configure Jira to change statuses from email for your customer or for vendors who are not able to log in to Jira or maybe you don't have enough licenses for them?

Jira does not have this ability yet! You need to have a valid Jira license to change statuses in Jira projects.

In our case, there are issues that only vendors are able to resolve, so we needed them to change statuses in our project.

Here is how we configured Jira using automation with webhooks and HTML for email.

In our case, we need the vendor to be able to change the status of the issue to In Progress or Resolve with the resolution Done.

Firstly, we need to create 3 automation in the Jira project.

  1. Create an automation rule with an Incoming Webhook trigger, add desired conditions, and name that automation for example: “Webhook - Incoming change to In Progress“, for changing status to in progress, and in the “Execute this automation rule with*” option select Issues provided in the webhook HTTP POST body

    Here is how it looks:

     1.png

  2. Create an automation rule with an Incoming Webhook trigger, add desired conditions, and name that automation for example: “Webhook - Incoming change to Resolved“, for changing status to Resolved, and in the “Execute this automation rule with*” option select Issues provided in the webhook HTTP POST body

    Here is how it looks:

    2.png

     

  3. Create an automation rule with the “Create issue” trigger, and add a condition where you want to send status change buttons to the email. Add Send email action, add an email where the buttons should be sent, add desired subject and in the email body add the following HTML:

    <div style="display: flex;">

    <form action="[Webhook URL Generated in Webhook - Incoming change to In Progress Automation]?issue={{issue.key}}" method="POST" name="submitForm">
    <button type="submit" style="background-color: #5ad7fa"> <b> In Progress </b></button>
    </form>
    <p>       </p>
    <form action="[Webhook URL Generated in Webhook - Incoming change to Resolved Automation]?issue={{issue.key}}" method="POST" name="submitForm">
    <button type="submit" style="background-color: #73faab"> <b> Resolve </b></button>
    </form>
    </div>

The colors are matched using inline CSS.

Here’s how it looks:

3.png

Here are the buttons sent to email by the automation:

4.png

Note that the automation actor should have the right permission to change statuses, and the transition must exist from the current status.

0 comments

Comment

Log in or Sign up to comment