Class ByProjectKeyCustomersByIDHead

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

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



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