Class ByProjectKeyMeOrdersByIDHead

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

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



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