Class ByProjectKeyInStoreKeyByStoreKeyMeActiveCartGet

java.lang.Object
io.vrap.rmf.base.client.ApiMethod<T,TResult>
io.vrap.rmf.base.client.TypeApiMethod<ByProjectKeyInStoreKeyByStoreKeyMeActiveCartGet,Cart>
com.commercetools.api.client.ByProjectKeyInStoreKeyByStoreKeyMeActiveCartGet
All Implemented Interfaces:
Deprecatable200Trait<ByProjectKeyInStoreKeyByStoreKeyMeActiveCartGet>, ErrorableTrait<ByProjectKeyInStoreKeyByStoreKeyMeActiveCartGet>, ExpandableTrait<ByProjectKeyInStoreKeyByStoreKeyMeActiveCartGet>, ClientRequestCommand<Cart>, CreateHttpRequestCommand, HttpRequestCommand<Cart>, 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, this method returns a ResourceNotFound error.



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