I have the following code:
const requestData = {
id: 123
};
this.http.delete(APIURL, {params: requestData})
.subscribe(() => {
do_something
}, () => {
log_error
});
For some reason, the .delete is not sending the params to the URL How can I make it send the params similar to a POST (form data)?