delete
Creates an HTTP DELETE request to the specified URL.
Return
The created HTTP DELETE request.
Example usage:
val request = delete("https://example.com")
val response: HttpResponse<String> = request.coSend(ofString)
Content copied to clipboard
Parameters
url
The URL for the HTTP request.
f
A lambda with receiver on CustomHttpRequestBuilder
which allows to build the HTTP request.