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

Features:

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

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