Rate this page:
Information about products
GET /rest/2/products
Get a list of products matching the specified parameters.
string
Only returns apps compatible with this application
integer
Only returns apps compatible with the specified application build number
int64
string
Only returns apps with the specified payment model
Valid values: free
, marketplace
, orderable
, paid
string
Only returns apps with the specified hosting model
Valid values: any
, cloud
, datacenter
, server
boolean
Includes the latest compatible version in the response
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/products' \
--header 'Accept: application/json'
Content type | Value |
---|---|
application/json |
GET /rest/2/products/key/{productKey}
Get a specific product.
string
The unique identifier for this product, for example "jira-software"
string
Only returns apps compatible with this application
integer
Only returns apps compatible with the specified application build number
int64
string
Only returns apps with the specified payment model
Valid values: free
, marketplace
, orderable
, paid
string
Only returns apps with the specified hosting model
Valid values: any
, cloud
, datacenter
, server
boolean
Includes the latest compatible version in the response
1 2 3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/products/key/{productKey}' \
--header 'Accept: application/json'
Content type | Value |
---|---|
application/json |
GET /rest/2/products/key/{productKey}/versions
Get a list of versions for the specified product.
string
The unique identifier for this product, for example "jira-software"
string
Only returns apps compatible with this application
integer
Only returns apps compatible with the specified application build number
int64
string
Only returns apps with the specified payment model
Valid values: free
, marketplace
, orderable
, paid
string
Only returns apps with the specified hosting model
Valid values: any
, cloud
, datacenter
, server
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/products/key/{productKey}/versions' \
--header 'Accept: application/json'
Content type | Value |
---|---|
application/json |
GET /rest/2/products/key/{productKey}/versions/build/{buildNumber}
Get details about a specific version, matching the specified build number, of the specified product.
string
The unique identifier for this product, for example "jira-software"
integer
The unique internal identifier and sort key for this version
int32
string
Only returns apps compatible with this application
integer
Only returns apps compatible with the specified application build number
int64
string
Only returns apps with the specified payment model
Valid values: free
, marketplace
, orderable
, paid
string
Only returns apps with the specified hosting model
Valid values: any
, cloud
, datacenter
, server
1 2 3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/products/key/{productKey}/versions/build/{buildNumber}' \
--header 'Accept: application/json'
Content type | Value |
---|---|
application/json |
GET /rest/2/products/key/{productKey}/versions/latest
Get the latest version of the specified product.
string
The unique identifier for this product, for example "jira-software"
string
Only returns apps compatible with this application
integer
Only returns apps compatible with the specified application build number
int64
string
Only returns apps with the specified payment model
Valid values: free
, marketplace
, orderable
, paid
string
Only returns apps with the specified hosting model
Valid values: any
, cloud
, datacenter
, server
1 2 3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/products/key/{productKey}/versions/latest' \
--header 'Accept: application/json'
Content type | Value |
---|---|
application/json |
GET /rest/2/products/key/{productKey}/versions/name/{versionName}
Get details about a specific version, matching the specified name, of the specified product.
string
The unique identifier for this product, for example "jira-software"
string
The display name of the version, for example "1.0.0"
string
Only returns apps compatible with this application
integer
Only returns apps compatible with the specified application build number
int64
string
Only returns apps with the specified payment model
Valid values: free
, marketplace
, orderable
, paid
string
Only returns apps with the specified hosting model
Valid values: any
, cloud
, datacenter
, server
1 2 3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/products/key/{productKey}/versions/name/{versionName}' \
--header 'Accept: application/json'
Content type | Value |
---|---|
application/json |
Rate this page: