From c617a579a80341da48d5046ff95fffe313e03875 Mon Sep 17 00:00:00 2001 From: Karanjot Singh Date: Thu, 12 Sep 2024 23:22:08 +0530 Subject: [PATCH] Fix AtlanRemoveTag method Signed-off-by: Karanjot Singh --- atlan/assets/asset.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atlan/assets/asset.go b/atlan/assets/asset.go index 8d223f9..2615e3a 100644 --- a/atlan/assets/asset.go +++ b/atlan/assets/asset.go @@ -897,7 +897,7 @@ func RemoveAtlanTag[T AtlanObject]( } // Construct the API path for deleting the tag - API, _ := api.FormatPathWithParams(assetType.Name(), "classifications", classificationID) + API, _ := api.FormatPathWithParams(assetType.Name(), "classification", classificationID) // Call the Atlan API to remove the tag _, err = DefaultAtlanClient.CallAPI(API, queryParams, nil)