Skip to main content

Adds a tag to the specified features

PUT <your-unleash-url>/api/admin/projects/:projectId/tags

Authorization

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

Add a tag to a list of features. Create tags if needed.

Request

Path Parameters

  • projectId string required

Body

required

tagsBulkAddSchema

  • features string[] required

    Possible values: non-empty

    The list of features that will be affected by the tag changes.

  • tags objectrequired

    The tag changes to be applied to the features.

  • addedTags object[]required

    Tags to add to the feature.

  • 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

  • ]
  • removedTags object[]required

    Tags to remove from the feature.

  • 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

  • ]
Responses

This response has no body.

Authorization

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

Request

Base URL
<your-unleash-url>
Security Scheme
apiKey
projectId — path required
Body required
{
"features": [
"string"
],
"tags": {
"addedTags": [
{
"value": "tag-to-add",
"type": "simple"
}
],
"removedTags": [
{
"value": "tag-to-remove",
"type": "simple"
}
]
}
}
curl / cURL
curl -L -X PUT '<your-unleash-url>/api/admin/projects/:projectId/tags' \
-H 'Content-Type: application/json' \
-H 'Authorization: <API_KEY_VALUE>' \
--data-raw '{
"features": [
"string"
],
"tags": {
"addedTags": [
{
"value": "tag-to-add",
"type": "simple"
}
],
"removedTags": [
{
"value": "tag-to-remove",
"type": "simple"
}
]
}
}'