Delete records from a database table
where
conditions. This endpoint allows you to remove existing records from your database by specifying which records to delete.
users
, products
, or orders
.{"status": "inactive"}
will match records where the status field equals “inactive”.true
if the delete operation was successful, false
otherwise.Error | Cause | Solution |
---|---|---|
”Table not found” | The specified table doesn’t exist | Check your table name for typos |
”Missing where conditions” | The where parameter is empty | Provide at least one condition in the where object |
”No records match the conditions” | No records matched your where conditions | This is not an error, but check your conditions if you expected records to be deleted |
”Unauthorized” | Invalid or missing API key | Check that you’re using a valid API key |