Class ByProjectKeyProductsByIDHead

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

Check if a Product exists with a specified id. Responds with a 200 OK status if the Product exists or 404 Not Found otherwise.



   CompletableFuture<ApiHttpResponse<com.fasterxml.jackson.databind.JsonNode>> result = apiRoot
            .withProjectKey("{projectKey}")
            .products()
            .withId("{ID}")
            .head()
            .execute()