async.removeVerb String(default: "POST")

The HTTP verb that will be used by the remove action.

Example

<input type="file" name="files" id="photos" />
<script>
    $("#photos").kendoUpload({
        async: {
            saveUrl: "http://my-app.localhost/save",
            removeUrl: "http://my-app.localhost/remove",
            removeVerb: "DELETE"
        }
    });
</script>
In this article