Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 15 Next »

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

Features:

  • Project Properties can be updated through CLI or REST API.

  • Project Properties can be visible to All project users.

    • 👉 Allows to update for users with Issue Edit project permissions.

  • Project Properties Workflows (Coming soon)

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

DEMO - ADD OR UPDATE

curl --request PUT \
  --url 'https://x.atlassian.net/rest/api/3/project/PP/properties/ilaesolution-project-properties' \
  --user 'email@example.com:<api_token>' \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --data '{"key1":"value1", "key2":"value2", "key3":"value3"}'

Jira Cloud LEGACY 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

DEMO - ADD OR UPDATE

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>"'

DEMO - DELETE

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

  • No labels