v7

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-013764062.2 MB
Features

Adds a tag to a feature.

Adds a tag to a feature if the feature and tag type exist in the system. The operation is idempotent, so adding an existing tag will result in a successful response.

post/api/admin/features/{featureName}/tags

Path parameters

featureNamestring required

Request body

valuestring required

The value of the tag.

typestring required

The type of the tag

colorstring nullable

The hexadecimal color code for the tag type.

Example request

{
  "value": "a-tag-value",
  "type": "simple",
  "color": "#FFFFFF"
}

Response

The resource was successfully created.

valuestring required

The value of the tag.

typestring required

The type of the tag

colorstring nullable

The hexadecimal color code for the tag type.

Example response

{
  "value": "a-tag-value",
  "type": "simple",
  "color": "#FFFFFF"
}