Using the PATCH method, you can update rows.
curl "https://api.getmateo.com/api/v1/webhook?id=1234" \ -X PATCH -H "Content-Type: application/json" \ -d '{ "active": true }'
HTTP/1.1 204 No Content
select
curl "https://api.getmateo.com/api/v1/webhook?id=1234&select=id,name,active" \ -X PATCH -H "Content-Type: application/json" \ -d '{ "active": true }'
HTTP/1.1 200 OK
{ "id": 1234, "name": "My Webhook", "active": true }