>> Always upgrade / install app version to latest for Improvements <<

Manage or centralize the project level or related metadata in property fields for tracking and automation.

Features:

Quick Start steps

Please see, Demo video.

https://www.youtube.com/playlist?list=PLvhFM_juEN08oV0IgElOB-7Ln2To2xf3b

Please note these special characters in property name is not supported.

# \ % ; / ?

Go to Project Properties page.

Click Update button for new property.

Demo.

https://www.youtube.com/watch?v=TFz6NNkP_9k

Go to project workflows, configure Conditions / Post functions for project properties.

Demo.

https://www.youtube.com/watch?v=qzRUSCaVbfU

Below example to update project properties via REST API or CLI.

Jira Cloud Project Properties REST API documentation

https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-properties/#api-rest-api-3-project-projectidorkey-properties-propertykey-put

Please note. For updates through REST API, Property name must starts with prefix pp- e.g. pp-customer.name

curl --request PUT \
  --url 'https://x.atlassian.net/rest/api/3/project/PP/properties/pp-customer.name' \
  --user 'email@example.com:<api_token>' \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --data '"<property value here>"'
>>>> String data example
--data '"hello world"'

>>>> Number data example
--data '45.89'

>>>> Object data example
--data '{"sname": "x", "sage": 24}'

curl --request DELETE \
  --url 'https://x.atlassian.net/rest/api/3/project/PP/properties/pp-customer.name' \
  --user 'email@example.com:<api_token>'

Go to view all properties > Settings > Display Web trigger URL

curl --request POST \
  --url 'https://94d7975e-***.he**.atlassian-dev.net/x1/sRh6qfcfSiw32tbCevYxQ5H3g7s?action=reindex&projectKey=ILADEV' \
  --user 'email@example.com:<api_token>'

Go to Browser Developer Tools > Console log