This function returns the value of a project property for a given project property in the current issue's project.

Null is returned if project property doesn't exist.

Syntax
projectProperty(propertyName) #Output: Text
Examples
Parser expressionDescription
projectProperty("maxNumberOfReopenings") 

This example might return

"3",

if there is a property of: {maxNumberOfReopenings=3} in the description of current's issue project.

Additional information

Parameters used in this function

ParameterInput (data type)Description
propertyName

TEXT

Text containing a valid project property. Learn more about JWT project properties.
Output

This function returns a TEXT


Variant where you can additionally define a project key.

Syntax
projectProperty(propertyName, projectKey) #Output: Text
Examples
Parser expressionDescription
projectProperty("maxNumberOfReopenings", "CRM")

This example might return

"3",

if there is a property of: {maxNumberOfReopenings=3} in the description of the project with the key CRM.

Additional information

Parameters used in this function

ParameterInput (data type)Description
propertyName

TEXT

Text containing a valid project property. Learn more about JWT project properties.
projectKey

TEXT

Text containing a valid project key.
Output

This function returns a TEXT