delete

Builds a route to match DELETE requests with the specified regex path. Named parameters from regex can be accessed via ApplicationCall.parameters.

Example:

delete(Regex("/(?<name>.+)/hello")) {
    val name = call.parameters["name"]
    ...
}

Report a problem


Builds a route to match DELETE requests with the specified path.

Report a problem

See also


Builds a route to match DELETE requests.

Report a problem

See also