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
Example request
{
"value": "a-tag-value",
"type": "simple",
"color": "#FFFFFF"
}Response
The resource was successfully created.
Example response
{
"value": "a-tag-value",
"type": "simple",
"color": "#FFFFFF"
}