• App versions
  • Applications
  • Apps
  • Assets
  • Categories
  • License types
  • Migrations
  • Privacy and Security
  • Products
  • Promotions (Removed)
  • Reporting
  • Reviews
  • Vendors
Platform
Atlassian Marketplace / Reference / Marketplace REST API

Products

Postman Collection
OpenAPI
GET

Get products

Get a list of products matching the specified parameters.

Request

Query parameters

application

string

applicationBuild

integer

cost

string

hosting

string

withVersion

boolean

offset

integer

limit

integer

Responses

application/json

ProductCollection
GET/products
1 2 3 curl --request GET \ --url 'https://marketplace.atlassian.com/rest/2/products' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 { "_links": { "self": { "href": "<string>", "type": "<string>", "title": "<string>" }, "query": { "template": "<string>", "type": "<string>", "name": "<string>" }, "byKey": { "template": "<string>", "type": "<string>", "name": "<string>" }, "latestVersion": { "template": "<string>", "type": "<string>", "name": "<string>" }, "versionByBuild": { "template": "<string>", "type": "<string>", "name": "<string>" }, "versionByName": { "template": "<string>", "type": "<string>", "name": "<string>" }, "next": { "href": "<string>", "type": "<string>", "title": "<string>" }, "prev": { "href": "<string>", "type": "<string>", "title": "<string>" } }, "_embedded": { "products": [ { "_links": { "self": { "href": "<string>" }, "versions": { "href": "<string>" }, "latestVersion": { "href": "<string>" }, "versionByBuild": { "template": "<string>" }, "versionByName": { "template": "<string>" } }, "_embedded": {}, "name": "<string>", "key": "<string>", "summary": "<string>" } ] }, "count": 49 }
GET

Get product

Get a specific product.

Request

Path parameters

productKey

string

Required

Query parameters

application

string

applicationBuild

integer

cost

string

hosting

string

withVersion

boolean

Responses

application/json

Product

Detailed information about a product

GET/products/key/{productKey}
1 2 3 curl --request GET \ --url 'https://marketplace.atlassian.com/rest/2/products/key/{productKey}' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 { "_links": { "self": { "href": "<string>", "type": "<string>", "title": "<string>" }, "downloads": { "href": "<string>", "type": "<string>", "title": "<string>" }, "logo": { "href": "<string>", "type": "<string>", "title": "<string>" }, "titleLogo": { "href": "<string>", "type": "<string>", "title": "<string>" }, "versions": { "href": "<string>", "type": "<string>", "title": "<string>" }, "latestVersion": { "href": "<string>", "type": "<string>", "title": "<string>" }, "versionByBuild": { "template": "<string>", "type": "<string>", "name": "<string>" }, "versionByName": { "template": "<string>", "type": "<string>", "name": "<string>" } }, "_embedded": { "logo": { "_links": { "self": { "href": "<string>" }, "image": { "href": "<string>" }, "unscaled": { "href": "<string>" } } }, "titleLogo": { "_links": { "self": { "href": "<string>" }, "image": { "href": "<string>" }, "unscaled": { "href": "<string>" } } }, "version": { "_links": { "self": { "href": "<string>" } }, "_embedded": {}, "name": "<string>", "buildNumber": 60, "paymentModel": "atlassian", "releaseDate": "<string>", "compatibilities": [ { "application": "<string>", "hosting": {} } ] } }, "name": "<string>", "key": "<string>", "summary": "<string>" }
GET

Get product versions

Get a list of versions for the specified product.

Request

Path parameters

productKey

string

Required

Query parameters

application

string

applicationBuild

integer

cost

string

hosting

string

offset

integer

limit

integer

Responses

application/json

ProductVersionCollection
GET/products/key/{productKey}/versions
1 2 3 curl --request GET \ --url 'https://marketplace.atlassian.com/rest/2/products/key/{productKey}/versions' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 { "_links": { "self": { "href": "<string>", "type": "<string>", "title": "<string>" }, "query": { "template": "<string>", "type": "<string>", "name": "<string>" }, "next": { "href": "<string>", "type": "<string>", "title": "<string>" }, "prev": { "href": "<string>", "type": "<string>", "title": "<string>" }, "latestVersion": { "href": "<string>", "type": "<string>", "title": "<string>" }, "versionByBuild": { "template": "<string>", "type": "<string>", "name": "<string>" }, "versionByName": { "template": "<string>", "type": "<string>", "name": "<string>" } }, "_embedded": { "versions": [ { "_links": { "self": { "href": "<string>" } }, "_embedded": {}, "name": "<string>", "buildNumber": 60, "paymentModel": "atlassian", "releaseDate": "<string>", "compatibilities": [ { "application": "<string>", "hosting": {} } ] } ] }, "count": 60 }
GET

Get product version (by number)

Get details about a specific version, matching the specified build number, of the specified product.

Request

Path parameters

productKey

string

Required
buildNumber

integer

Required

Query parameters

application

string

applicationBuild

integer

cost

string

hosting

string

Responses

application/json

ProductVersion
GET/products/key/{productKey}/versions/build/{buildNumber}
1 2 3 curl --request GET \ --url 'https://marketplace.atlassian.com/rest/2/products/key/{productKey}/versions/build/{buildNumber}' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 { "_links": { "self": { "href": "<string>", "type": "<string>", "title": "<string>" }, "view": { "href": "<string>", "type": "<string>", "title": "<string>" }, "artifact": { "href": "<string>", "type": "<string>", "title": "<string>" }, "releaseNotes": { "href": "<string>", "type": "<string>", "title": "<string>" } }, "_embedded": { "artifact": { "_links": { "self": { "href": "<string>" }, "binary": { "href": "<string>" } } } }, "name": "<string>", "buildNumber": 60, "paymentModel": "atlassian", "releaseDate": "<string>", "compatibilities": [ { "application": "<string>", "hosting": { "cloud": true, "server": { "min": { "build": 117 }, "max": { "build": 117 } }, "dataCenter": { "min": { "build": 117 }, "max": { "build": 117 } } } } ] }
GET

Get product version (latest)

Get the latest version of the specified product.

Request

Path parameters

productKey

string

Required

Query parameters

application

string

applicationBuild

integer

cost

string

hosting

string

Responses

application/json

ProductVersion
GET/products/key/{productKey}/versions/latest
1 2 3 curl --request GET \ --url 'https://marketplace.atlassian.com/rest/2/products/key/{productKey}/versions/latest' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 { "_links": { "self": { "href": "<string>", "type": "<string>", "title": "<string>" }, "view": { "href": "<string>", "type": "<string>", "title": "<string>" }, "artifact": { "href": "<string>", "type": "<string>", "title": "<string>" }, "releaseNotes": { "href": "<string>", "type": "<string>", "title": "<string>" } }, "_embedded": { "artifact": { "_links": { "self": { "href": "<string>" }, "binary": { "href": "<string>" } } } }, "name": "<string>", "buildNumber": 60, "paymentModel": "atlassian", "releaseDate": "<string>", "compatibilities": [ { "application": "<string>", "hosting": { "cloud": true, "server": { "min": { "build": 117 }, "max": { "build": 117 } }, "dataCenter": { "min": { "build": 117 }, "max": { "build": 117 } } } } ] }
GET

Get product version (by name)

Get details about a specific version, matching the specified name, of the specified product.

Request

Path parameters

productKey

string

Required
versionName

string

Required

Query parameters

application

string

applicationBuild

integer

cost

string

hosting

string

Responses

application/json

ProductVersion
GET/products/key/{productKey}/versions/name/{versionName}
1 2 3 curl --request GET \ --url 'https://marketplace.atlassian.com/rest/2/products/key/{productKey}/versions/name/{versionName}' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 { "_links": { "self": { "href": "<string>", "type": "<string>", "title": "<string>" }, "view": { "href": "<string>", "type": "<string>", "title": "<string>" }, "artifact": { "href": "<string>", "type": "<string>", "title": "<string>" }, "releaseNotes": { "href": "<string>", "type": "<string>", "title": "<string>" } }, "_embedded": { "artifact": { "_links": { "self": { "href": "<string>" }, "binary": { "href": "<string>" } } } }, "name": "<string>", "buildNumber": 60, "paymentModel": "atlassian", "releaseDate": "<string>", "compatibilities": [ { "application": "<string>", "hosting": { "cloud": true, "server": { "min": { "build": 117 }, "max": { "build": 117 } }, "dataCenter": { "min": { "build": 117 }, "max": { "build": 117 } } } } ] }

Rate this page: