post
fun Route.post(path: String, body: PipelineInterceptor<Unit, ApplicationCall>): Route
Content copied to clipboard
Builds a route to match POST
requests with specified path
inline fun <R : Any> Route.post(crossinline body: suspend PipelineContext<Unit, ApplicationCall>.(R) -> Unit): Route
Content copied to clipboard
Builds a route to match POST
requests receiving request body content of type R
inline fun <R : Any> Route.post(path: String, crossinline body: suspend PipelineContext<Unit, ApplicationCall>.(R) -> Unit): Route
Content copied to clipboard
Builds a route to match POST
requests with specified path receiving request body content of type R
Builds a route to match POST
requests