• Product Tags
    Platform
    Atlassian Marketplace / Reference / Product Tags REST API

    Product Tags

    Postman Collection
    OpenAPI

    Information about product tags, which includes new categories and keywords that will replace the existing categories.

    GET

    Get Product Tags

    Get a list of product tags in paginated way.

    Request

    Query parameters

    start-id

    integer

    limit

    integer

    tagType

    string

    Responses

    Successfully fetched the list of product tags

    application/json

    ProductTagCollection
    GET/marketplace/rest/1/product-tags
    1 2 3 curl --request GET \ --url 'https://api.atlassian.com/marketplace/rest/1/product-tags' \ --header 'Accept: application/json'
    200Response
    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

    Get product tag

    Get a specific product tag.

    Request

    Path parameters

    ProductTagId

    string

    Required

    Responses

    Successfully fetched

    application/json

    ProductTag
    GET/marketplace/rest/1/product-tags/{productTagId}
    1 2 3 curl --request GET \ --url 'https://api.atlassian.com/marketplace/rest/1/product-tags/{productTagId}' \ --header 'Accept: application/json'
    200Response
    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: