CompletableFuture post()

in src/main/java/com/spotify/github/v3/clients/GitHubClient.java [582:589]


  CompletableFuture<Response> post(final String path, final String data) {
    final Request request =
        requestBuilder(path)
            .method("POST", RequestBody.create(parse(MediaType.APPLICATION_JSON), data))
            .build();
    log.debug("Making POST request to {}", request.url().toString());
    return call(request);
  }