Automation basics
Understand the general concepts and best practices of automation in Atlassian cloud products.
Check out how we use smart values in our Jira automation template library.
The page describes the smart values available for accessing details related to Jira projects. These smart values can be used with the Project created trigger.
Returns the ID of the project that triggered the rule.
1
2
3
4
5
{{project.id}}
//returns
11200
Returns the project key of the project that triggered the rule.
1
2
3
4
5
{{project.key}}
//returns
NUC
Returns the name of the project that triggered the rule.
1
2
3
4
5
{{project.name}}
//returns
Project Nucleus
Returns the triggering project's type. Possible types are Business, Software, Service management, or Discovery.
1
2
3
4
5
{{project.projectTypeKey}}
//returns
Software
Returns the triggering project's avatar URL.
1
2
3
4
5
{{project.avatarUrls}}
// returns
48x48=https://acme.atlassian.net/secure/projectavatar?pid=11200&avatarId=10404, 24x24=https://acme.atlassian.net/secure/projectavatar?size=small&s=small&pid=11200&avatarId=10404, 16x16=https://acme.atlassian.net/secure/projectavatar?size=xsmall&s=xsmall&pid=11200&avatarId=10404, 32x32=https://acme.atlassian.net/secure/projectavatar?size=medium&s=medium&pid=11200&avatarId=10404
Was this helpful?