Rate this page:
Information about applications
GET /rest/2/applications
Get a list of applications.
integer
If specified, skips ahead by this number of items
int32
integer
If specified, limits the result set to this number of items
int32
1 2 3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/applications' \
--header 'Accept: application/json'
Content type | Value |
---|---|
application/json |
GET /rest/2/applications/{applicationKey}
Get a specific application.
string
The unique identifier for this application, for example "jira"
1 2 3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/applications/{applicationKey}' \
--header 'Accept: application/json'
Content type | Value |
---|---|
application/json |
GET /rest/2/applications/{applicationKey}/versions
Get a list of versions for the specified application.
string
The unique identifier for this application, for example "jira"
integer
Selects only application versions whose build number is greater than this
int64
integer
If specified, skips ahead by this number of items
int32
integer
If specified, limits the result set to this number of items
int32
1 2 3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/applications/{applicationKey}/versions' \
--header 'Accept: application/json'
Content type | Value |
---|---|
application/json |
GET /rest/2/applications/{applicationKey}/versions/build/{applicationBuildNumber}
Get details about a specific version, matching the specified build number, of the specified application.
string
The unique identifier for this application, for example "jira"
integer
The unique integer identifier for the application version
int64
1 2 3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/applications/{applicationKey}/versions/build/{applicationBuildNumber}' \
--header 'Accept: application/json'
Content type | Value |
---|---|
application/json |
GET /rest/2/applications/{applicationKey}/versions/latest
Get the latest version of the specified application.
string
The unique identifier for this application, for example "jira"
1 2 3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/applications/{applicationKey}/versions/latest' \
--header 'Accept: application/json'
Content type | Value |
---|---|
application/json |
GET /rest/2/applications/{applicationKey}/versions/name/{name}
Get details about a specific version, matching the specified name, of the specified application.
string
The unique identifier for this application, for example "jira"
string
The display name of the version, for example "1.0.0"
1 2 3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/applications/{applicationKey}/versions/name/{name}' \
--header 'Accept: application/json'
Content type | Value |
---|---|
application/json |
Rate this page: