{ "opencollection": "1.0.0", "info": { "name": "Atlassian Admin Account Jira Settings API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Jira Settings", "type": "folder" }, "items": [ { "info": { "name": "Atlassian Get Advanced Settings", "type": "http" }, "http": { "method": "GET", "url": "https://api.atlassian.com/rest/api/3/application-properties/advanced-settings" }, "docs": "Returns the application properties that are accessible on the *Advanced Settings* page. To navigate to the *Advanced Settings* page in Jira, choose the Jira icon > **Jira settings** > **System**, **General Configuration** and then click **Advanced Settings** (in the upper right).

**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." }, { "info": { "name": "Atlassian Set Application Property", "type": "http" }, "http": { "method": "PUT", "url": "https://api.atlassian.com/rest/api/3/application-properties/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The key of the application property to update." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Changes the value of an application property. For example, you can change the value of the `jira.clone.prefix` from its default value of *CLONE -* to *Clone -* if you prefer sentence case capitalization. Editable properties are described below along with their default values.

#### Advanced settings ####

The advanced settings below are also accessible in [Jira](https://confluence.atlassian.com/x/vYXKM).

| Key | Description | Default value |
| -- | -- | -- |
| `jira." }, { "info": { "name": "Atlassian Get Application Property", "type": "http" }, "http": { "method": "GET", "url": "https://api.atlassian.com/rest/api/3/application-properties", "params": [ { "name": "key", "value": "", "type": "query", "description": "The key of the application property." }, { "name": "permissionLevel", "value": "", "type": "query", "description": "The permission level of all items being returned in the list." }, { "name": "keyFilter", "value": "", "type": "query", "description": "When 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.*." } ] }, "docs": "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](#api-rest-api-3-application-properties-id-put) for descriptions of editable properties.

**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.co" }, { "info": { "name": "Atlassian Get Global Settings", "type": "http" }, "http": { "method": "GET", "url": "https://api.atlassian.com/rest/api/3/configuration" }, "docs": "Returns the [global settings](https://confluence.atlassian.com/x/qYXKM) in Jira. These settings determine whether optional features (for example, subtasks, time tracking, and others) are enabled. If time tracking is enabled, this operation also returns the time tracking configuration.

**[Permissions](#permissions) required:** Permission to access Jira." } ] } ], "bundled": true }