Skip to main content

Get all tags for a feature.

GET <your-unleash-url>/api/admin/features/:featureName/tags

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Retrieves all the tags for a feature name. If the feature does not exist it returns an empty list.

Request

Path Parameters

  • featureName string required
Responses

tagsSchema

Schema
  • version integer required

    The version of the schema used to model the tags.

  • tags object[]required

    A list of tags.

  • Array [
  • value string required

    Possible values: >= 2 characters and <= 50 characters

    The value of the tag.

  • type string required

    Possible values: >= 2 characters and <= 50 characters

    The type of the tag

  • ]

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Request

Base URL
<your-unleash-url>
Security Scheme
apiKey
featureName — path required
curl / cURL
curl -L -X GET '<your-unleash-url>/api/admin/features/:featureName/tags' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'