Using the DELETE method, you can remove rows.
DELETE
curl "https://integration.getmateo.com/api/v1/contact?id=eq.123" \ -X DELETE
HTTP/1.1 204 No Content
select
curl "https://integration.getmateo.com/api/v1/contact?id=1234&select=id,full_name" \ -X DELETE -H "Content-Type: application/json"
HTTP/1.1 200 OK
{ "id": 1234, "full_name": "Max Mustermann" }