Information about 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.
string
Required1
2
3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/addonCategories/app/{applicationKey}' \
--header 'Accept: application/json'
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 a specific category.
integer
Required1
2
3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/addonCategories/{pluginCategoryId}' \
--header 'Accept: application/json'
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: