From 9a0226d15883191b481a6cd88bd89486019b4f16 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Tue, 26 Apr 2022 16:19:34 +0200 Subject: [PATCH] docs: remove deprecation notices for tags. --- website/docs/api/admin/feature-toggles-api.md | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/website/docs/api/admin/feature-toggles-api.md b/website/docs/api/admin/feature-toggles-api.md index 6bca9852522..a6e6799de03 100644 --- a/website/docs/api/admin/feature-toggles-api.md +++ b/website/docs/api/admin/feature-toggles-api.md @@ -4,7 +4,7 @@ title: /api/admin/features --- :::caution Deprecation notice -This API was deprecated as part of the v4.3 release and will be removed in v5.0. See [the project-based API (/api/admin/projects/:projectId)](./feature-toggles-api-v2.md) instead. +Most of this API was deprecated as part of the v4.3 release and will be removed in v5.0. You should use [the project-based API (/api/admin/projects/:projectId)](./feature-toggles-api-v2.md) instead. The deprecated endpoints are marked as such in the document below. ::: @@ -205,12 +205,6 @@ Returns 200-response if the feature toggle was updated successfully. ## Tag a Feature Toggle {#tag-a-feature-toggle} -:::caution Deprecation notice - -This endpoint is deprecated. Please use the [project-based endpoint to tag a feature toggle](./feature-toggles-api-v2.md#fetching-toggles) instead. -::: - - `POST https://unleash.host.com/api/admin/features/:featureName/tags` Used to tag a feature @@ -237,12 +231,6 @@ If the tuple (type, value) does not already exist, it will be added to the list ## Remove a tag from a Feature Toggle {#remove-a-tag-from-a-feature-toggle} -:::caution Deprecation notice - -This endpoint is deprecated. Please use the [project-based endpoint to remove tags from a toggle](./feature-toggles-api-v2.md#fetching-toggles) instead. -::: - - `DELETE https://unleash.host.com/api/admin/features/:featureName/tags/:type/:value` Removes the specified tag from the `(type, value)` tuple from the Feature Toggle's list of tags.