Class ByProjectKeyMeShoppingListsByIDGet

All Implemented Interfaces:
Deprecatable200Trait<ByProjectKeyMeShoppingListsByIDGet>, ErrorableTrait<ByProjectKeyMeShoppingListsByIDGet>, ExpandableTrait<ByProjectKeyMeShoppingListsByIDGet>, ClientRequestCommand<ShoppingList>, CreateHttpRequestCommand, HttpRequestCommand<ShoppingList>, RequestCommand<ShoppingList>

Retrieves a ShoppingList with the provided id for the authenticated Customer or anonymous user. Returns a 200 OK status if successful.

A ResourceNotFound error is returned in the following scenarios:

  • If no ShoppingList exists with the provided id.
  • If a ShoppingList exists but does not contain either an anonymousId that matches the anonymous_id:{id} scope, or a customer with id value that matches the customer:{id} scope.


   CompletableFuture<ApiHttpResponse<com.commercetools.api.models.shopping_list.ShoppingList>> result = apiRoot
            .withProjectKey("{projectKey}")
            .me()
            .shoppingLists()
            .withId("{ID}")
            .get()
            .execute()