...
The rule will run when a new note is added to an alert. For example, send an email when a note is added to an alert.
Smart values for alerts
What are smart values?
Smart values allow you to access and manipulate issue and alert data within Atlassian Cloud. They can add significant power and complexity to your rules. Learn more about using smart values in Jira
{{alert}}
{{alert.id}}
{{alert.tinyId}}
{{alert.link}}
{{alert.status}}
{{alert.message}}
{alert.count}}
{{alert.description}}
{{alert.tags}}
{{alert.priority}}
{{alert.actions}}
{{alert.entity}}
{{alert.alias}}
{{alert.source}}
{{alert.extraProperties}}
{{alert.owner}}
{{alert.ownerId}}
{{alert.responders}}
{{alert.responders.get(index)}}
Get the responder specified in index
{{alert.responders.<property>}}
Similar to other list types, prints the values of this property of each responder separated by commas. So {{alert.responders.name}}
would print name1, name2, name3...
{{alert.responders.get(index).name}}
Get name of the responder specified in index
{{alert.responders.get(index).type}}
Get the type of responder
{{alert.responders.get(index).accountId}}
Get the responder’s Atlassian account ID (works only for responders of type ‘user’)
{{alert.responders.get(index).teamId}}
Get the Atlassian team ID of the responder type (works only for responders of type ‘team’)