Class ByProjectKeyMeCartsKeyByKeyHead

All Implemented Interfaces:
Deprecatable200Trait<ByProjectKeyMeCartsKeyByKeyHead>, ErrorableTrait<ByProjectKeyMeCartsKeyByKeyHead>, ClientRequestCommand<JsonNode>, CreateHttpRequestCommand, HttpRequestCommand<JsonNode>, RequestCommand<JsonNode>

Checks if a Cart exists for a given key. Returns a 200 OK status if the Cart exists or a 404 Not Found otherwise.



   CompletableFuture<ApiHttpResponse<com.fasterxml.jackson.databind.JsonNode>> result = apiRoot
            .withProjectKey("{projectKey}")
            .me()
            .carts()
            .withKey("{key}")
            .head()
            .execute()