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

Status
colourBlue
titleDemo - Add or Update

Code Block
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

Info

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

...