Get Application Property

GET {{baseUrl}}/rest/api/3/application-properties?key=<string>&permissionLevel=<string>&keyFilter=<string>

Returns all application properties or an application property.

If you specify a value for the key parameter, then an application property is returned as an object (not in an array). Otherwise, an array of all editable application properties is returned. See Set application property for descriptions of editable properties.

Permissions required: Administer Jira global permission.

Request Params

KeyDatatypeRequiredDescription
keystringThe key of the application property.
permissionLevelstringThe permission level of all items being returned in the list.
keyFilterstringWhen a key isn't provided, this filters the list of results by the application property key using a regular expression. For example, using jira.lf.* will return all application properties with keys that start with jira.lf..

RESPONSES

status: OK

[{&quot;id&quot;:&quot;jira.home&quot;,&quot;key&quot;:&quot;jira.home&quot;,&quot;value&quot;:&quot;/var/jira/jira-home&quot;,&quot;name&quot;:&quot;jira.home&quot;,&quot;desc&quot;:&quot;Jira home directory&quot;,&quot;type&quot;:&quot;string&quot;,&quot;defaultValue&quot;:&quot;&quot;},{&quot;id&quot;:&quot;jira.clone.prefix&quot;,&quot;key&quot;:&quot;jira.clone.prefix&quot;,&quot;value&quot;:&quot;CLONE -&quot;,&quot;name&quot;:&quot;The prefix added to the Summary field of cloned issues&quot;,&quot;type&quot;:&quot;string&quot;,&quot;defaultValue&quot;:&quot;CLONE -&quot;}]