requestDynamic
suspend fun RestClient.requestDynamic(url: String, block: RestRequestConfig<JsAny, JsAny>.() -> Unit = {}): RestResponse<JsAny>
Makes a http request to the server, returning the response object.
Return
the response object
Parameters
url
a URL address
block
an optional block for configuring the request
inline suspend fun <V : Any> RestClient.requestDynamic(url: String, data: V, crossinline block: RestRequestConfig<JsAny, V>.() -> Unit = {}): RestResponse<JsAny>
Makes a http request to the server, returning the response object.
Return
the response object
Parameters
url
a URL address
data
data to send
block
an optional block for configuring the request