Rate this page:
Scopes allow an app to request a particular level of access to an Atlassian product.
If you are building an Atlassian Connect app for Jira, use the following scopes:
Scope name | Description |
---|---|
NONE | Access app-defined data. This scope does not need to be declared in the descriptor. |
READ | View, browse, and read information from Jira. |
WRITE | Create or edit content in Jira, but not delete content. |
DELETE | Delete content in Jira. |
PROJECT_ADMIN | Administer a project in Jira. |
ADMIN | Administer the Jira site. |
ACT_AS_USER | Enact services on a user's behalf. |
ACCESS_EMAIL_ADDRESSES | Get the email addresses of users. |
Scopes are declared as a top level attribute of atlassian-connect.json
app descriptor as in this example:
1 2 3 4 5 6 7 8
{
"baseUrl": "http://my-app.com",
"key": "atlassian-connect-app",
"scopes": [
"read", "write"
],
"modules": {}
}
Rate this page: