This function returns the name of the priority with a given ID.

Syntax
priority(id) #Output: Text
Examples
Parser expressionDescription
priority(1)

This example returns a text with the corresponding name of the priority with the ID 1.

e.g. Highest

Additional information

Parameters used in this function

ParameterInput (data type)Description
id

NUMBER

A valid priority ID.
Output

This function returns a TEXT.

If there is no priority with the given ID, the function returns NULL.

Use this function to ensure expressions will continue to work after renaming priorities:

Will continue to work after priority name update (tick)Will fail after priority name update (error)
%{issue.priority} = priority(1)
%{issue.priority} = "Medium"

You need to quickly look up the IDs of custom fields, statuses, issue types, resolutions, priorities ...?

Try our app Admin Toolbox for Jira which will show the IDs of all relevant elements by default!


Use cases and examples