Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

Info

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

Status
colourBlue
titleDemo - Add or Update

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

Please note. Property name must starts with prefix epp- e.g. epp-customer.name

Status
colourBlue
titleDemo - Delete

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

...