I'm trying to talk to a somewhat REST API from an Angular 7 front end.
To remove some item from a collection, I need to send some other data in addition to the remove unique id, namely an authentication token, some collection info and some ancillary data.
However, the Http module of Angular 7 doesn't quite approve of a DELETE request with a body, and trying to make this request.
Here is my api:
DELETE /user/verifications
body {
"doc_type": "govt_id",
"doc_id": "5beedd169db947867b710afd"
}
this.http.request('delete', url, options)
instead – Pochard