Class ByProjectKeyReviewsByIDHead

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

Checks if a Review exists with the provided id. Returns a 200 status if the Review exists, or a 404 status otherwise.



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