delete

open fun delete(url: String, urlVariables: Array<Any>)

Delete the resources at the specified URI.

URI Template variables are expanded using the given URI variables, if any.

If you need to assert the request result consider using the exchange method.

Parameters

url

the URL

urlVariables

the variables to expand in the template

See also


open fun delete(url: String, urlVariables: Map<String, out Any>)

Delete the resources at the specified URI.

URI Template variables are expanded using the given map.

If you need to assert the request result consider using the exchange method.

Parameters

url

the URL

urlVariables

the variables to expand the template

See also


open fun delete(url: URI)

Delete the resources at the specified URL.

If you need to assert the request result consider using the exchange method.

Parameters

url

the URL

See also