Class ByProjectKeyInStoreKeyByStoreKeyMeActiveCartGet

java.lang.Object
io.vrap.rmf.base.client.ApiMethod<ByProjectKeyInStoreKeyByStoreKeyMeActiveCartGet,Cart>
com.commercetools.api.client.ByProjectKeyInStoreKeyByStoreKeyMeActiveCartGet
All Implemented Interfaces:
Deprecatable200Trait<ByProjectKeyInStoreKeyByStoreKeyMeActiveCartGet>, ErrorableTrait<ByProjectKeyInStoreKeyByStoreKeyMeActiveCartGet>, ExpandableTrait<ByProjectKeyInStoreKeyByStoreKeyMeActiveCartGet>, io.vrap.rmf.base.client.ClientRequestCommand<Cart>, io.vrap.rmf.base.client.RequestCommand<Cart>

Retrieves the Customer's most recently modified active Cart in the Store specified by the storeKey path parameter.

Carts with Merchant or Quote CartOrigin are ignored.

If no active Cart exists, a ResourceNotFound error is returned.



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