diff --git a/changes.md b/changes.md
index 9133283ee6a..b56e87d6883 100644
--- a/changes.md
+++ b/changes.md
@@ -1,5 +1,12 @@
**Api changes**
+
+Removed Resource(s)
+
+- :warning: removed resource `/{projectKey}/me/carts/key={key}`
+
+
+
Added Enum(s)
@@ -8,6 +15,18 @@
- added enum `customer-group` to type `CustomFieldReferenceValue`
+
+
+Removed Method(s)
+
+- :warning: removed method `apiRoot.withProjectKey().me().carts().withKey().get()`
+- :warning: removed method `apiRoot.withProjectKey().me().carts().withKey().head()`
+- :warning: removed method `apiRoot.withProjectKey().me().carts().withKey().post()`
+- :warning: removed method `apiRoot.withProjectKey().me().carts().withKey().delete()`
+- :warning: removed method `apiRoot.withProjectKey().me().quoteRequests().withId().delete()`
+- :warning: removed method `apiRoot.withProjectKey().me().quoteRequests().withKey().delete()`
+
+
**Import changes**
diff --git a/commercetools.Sdk/Tests/commercetools.Sdk.Api.Tests/Generated/Client/RequestBuilders/Me/ByProjectKeyMeCartsKeyByKeyTest.cs b/commercetools.Sdk/Tests/commercetools.Sdk.Api.Tests/Generated/Client/RequestBuilders/Me/ByProjectKeyMeCartsKeyByKeyTest.cs
deleted file mode 100644
index fd2d9c8bdd4..00000000000
--- a/commercetools.Sdk/Tests/commercetools.Sdk.Api.Tests/Generated/Client/RequestBuilders/Me/ByProjectKeyMeCartsKeyByKeyTest.cs
+++ /dev/null
@@ -1,117 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Net.Http;
-using Xunit;
-
-// ReSharper disable CheckNamespace
-namespace commercetools.Sdk.Api.Tests.Client.RequestBuilders.Me
-{
- public class ByProjectKeyMeCartsKeyByKeyTest : RequestBuilderParentTests
- {
- [Theory]
- [MemberData(nameof(GetData))]
- public void WithMethods(HttpRequestMessage request, string httpMethod, string uri)
- {
- Assert.Equal(httpMethod.ToLower(), request.Method.Method.ToLower());
- Assert.Equal(uri.ToLower(), request.RequestUri.ToString().ToLower());
- }
-
- public static IEnumerable