Class ByProjectKeyMeActiveCartGet

All Implemented Interfaces:
Deprecatable200Trait<ByProjectKeyMeActiveCartGet>, ErrorableTrait<ByProjectKeyMeActiveCartGet>, ExpandableTrait<ByProjectKeyMeActiveCartGet>, ClientRequestCommand<Cart>, CreateHttpRequestCommand, HttpRequestCommand<Cart>, RequestCommand<Cart>

Retrieves the Customer's most recently modified active Cart. Carts with Merchant or Quote CartOrigin are ignored.

If no active Cart exists, this method returns a ResourceNotFound error.



   CompletableFuture<ApiHttpResponse<com.commercetools.api.models.cart.Cart>> result = apiRoot
            .withProjectKey("{projectKey}")
            .me()
            .activeCart()
            .get()
            .execute()