post
Executes an HttpClient's POST request with the parameters configured in builder.
Learn more from Making requests.
Executes an HttpClient's POST request with the parameters configured in block.
Learn more from Making requests.
inline suspend fun HttpClient.post(urlString: String, block: HttpRequestBuilder.() -> Unit = {}): HttpResponse
Executes an HttpClient's POST request with the specified url and an optional block receiving an HttpRequestBuilder for configuring the request.
Learn more from Making requests.
inline suspend fun HttpClient.post(url: Url, block: HttpRequestBuilder.() -> Unit = {}): HttpResponse
Executes a HttpClient POST request with the specified url and an optional block receiving an HttpRequestBuilder for configuring the request.
Learn more from Making requests.