Returns an application property.
string
Requiredstring
string
RequiredReturned if the property exists and the currently authenticated user has permission to view it. Contains a full representation of the property.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/application-properties?permissionLevel={permissionLevel}&key={key}' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[
{
"id": "jira.home",
"key": "jira.home",
"value": "/var/jira/jira-home",
"name": "jira.home",
"desc": "Jira home directory",
"type": "string",
"defaultValue": ""
},
{
"id": "jira.clone.prefix",
"key": "jira.clone.prefix",
"value": "CLONE -",
"name": "The prefix added to the Summary field of cloned issues",
"type": "string",
"defaultValue": "CLONE -"
}
]
Returns the properties that are displayed on the "General Configuration > Advanced Settings" page.
This request has no parameters.
Returns all properties to display in the "General Configuration > Advanced Settings" page.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/application-properties/advanced-settings' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[
{
"id": "jira.home",
"key": "jira.home",
"value": "/var/jira/jira-home",
"name": "jira.home",
"desc": "Jira home directory",
"type": "string",
"defaultValue": ""
},
{
"id": "jira.clone.prefix",
"key": "jira.clone.prefix",
"value": "CLONE -",
"name": "The prefix added to the Summary field of cloned issues",
"type": "string",
"defaultValue": "CLONE -"
}
]
Update an application property via PUT. The "value" field present in the PUT will override the existing value.
string
Required