Information about product tags, which includes new categories and keywords that will replace the existing categories.
Get a list of product tags in paginated way.
integer
integer
string
Successfully fetched the list of product tags
1
2
3
curl --request GET \
--url 'https://api.atlassian.com/marketplace/rest/1/product-tags' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"values": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"tagType": "CATEGORY"
}
],
"links": {
"self": "<string>",
"next": "<string>"
}
}
Get a specific product tag.
string
RequiredSuccessfully fetched
1
2
3
curl --request GET \
--url 'https://api.atlassian.com/marketplace/rest/1/product-tags/{productTagId}' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
{
"value": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"tagType": "CATEGORY"
},
"links": {
"self": "<string>"
}
}
Rate this page: