I have recently found out how to delete rows by ID with the SODA API, but all of them were done through HTTP POST requests.
Whenever I use DELETE requests, no matter what content is sent, it deletes the entire contents of my database. On the documentation page for direct Direct Row Manipulation, the sample request for HTTP DELETE (application/json) does not work:
[
{
"typ": "delete",
"id": "row-evac~sxbs~gm8t"
}
]
Is the DELETE part of the SODA API functioning correctly? Or is the POST request the preferred choice?