Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents
minLevel1
maxLevel6
include
outlinefalse
indent
styledefault
exclude
typelist
class
printabletrue

With a Webhook link 🔗, you can trigger issue creation from a template using Jira Automation or third-party tools like Postman. It works with simple templates without variables, and you can also send different types of variables in the request body to enhance your processes even further 🚀.

  1. Open the edit page of the template you want to create a webhook link for.

  2. Navigate to the Automation tab.

  3. Click the Generate webhook button.

...

  1. That’s it! Just click the Copy button to grab the link, then paste it into Jira Automation or any other tool where you want to trigger issue creation from the template.

...

Panel
bgColor#DEEBFF

☝🏼NOTE: This method is ideal for templates without variables. Not using variables yet? Find more information about them here → Variables

...

Panel
bgColor#DEEBFF

☝🏼NOTE: The reporter of issues created via the webhook link will be the person who generated the link. You can always find all issues created from your template on the History tab on edit page.

...

When triggering a Webhook, you can customize the issues created by passing variables in the request body using JSON format. Currently, Text Variables are supported, and in the future, additional variable types such as Select List (Single choice), Select List (Multiple choices), and User Picker will be available. More about Variables can be found here → Variables.

...

Code Block
languagejson
{
"Day" : "1st",
"Month" : "September",
"Year" : "2030"
}

Smart Templates allow you to create customizable Jira issues by passing variables through the Webhook body. You can even pass Smart Values as the input for these template variables, enabling dynamic and context-specific issue creation based on real-time data.

...