• 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

Categories

Postman Collection
OpenAPI
GET

Get categories

Get a list of categories associated with the parent application.

For non-UPM clients, this resource returns all categories regardless of the specified application.

Request

Path parameters

applicationKey

string

Required

Responses

application/json

AddonCategoryCollection
GET/addonCategories/app/{applicationKey}
1 2 3 curl --request GET \ --url 'https://marketplace.atlassian.com/rest/2/addonCategories/app/{applicationKey}' \ --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 { "_links": { "self": { "href": "<string>", "type": "<string>", "title": "<string>" }, "parent": { "href": "<string>", "type": "<string>", "title": "<string>" } }, "_embedded": { "categories": [ { "_links": { "self": { "href": "<string>" }, "application": { "href": "<string>" }, "addons": { "href": "<string>" } }, "name": "<string>", "functional": true } ] } }
GET

Get category

Get a specific category.

Request

Path parameters

pluginCategoryId

integer

Required

Responses

application/json

AddonCategory
GET/addonCategories/{pluginCategoryId}
1 2 3 curl --request GET \ --url 'https://marketplace.atlassian.com/rest/2/addonCategories/{pluginCategoryId}' \ --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 { "_links": { "self": { "href": "<string>", "type": "<string>", "title": "<string>" }, "application": { "href": "<string>", "type": "<string>", "title": "<string>" }, "addons": { "href": "<string>", "type": "<string>", "title": "<string>" } }, "name": "<string>", "functional": true }

Rate this page: