This endpoint allows you to delete rows from a specific sheet in your spreadsheet. You can delete by row index or apply a filter to delete matching rows.
To delete by row index, provide the row number. To delete using a filter, specify a filter expression that matches the rows you want to delete.
A filter expression to select rows to delete when type is set to 'filter'. For example, 'age:eq:21' to delete rows where age is 21.
curl -X DELETE "https://api.sheet2db.dev/v1/data/aace0271-c068-499f-bb40-83354a35eebc/contacts" \ -G \ -d "type=row" \ -d "row=5"
{ "deleted": 1 }