Delete rows

Make DELETE request with a array of Ids in the body.

To delete multiple rows from the table, make a DELETE request with an array of IDs in the request body. Each ID in the array corresponds to a specific row that you want to delete.

curl -X DELETE "https://v1.appbackend.io/v1/rows/TABLE_ID" \
-H "Content-Type: application/json" \
--data '["6492ec533f4c107a1a7ec1", "6492ec533f4c107a1a7ec1"]'

Delete rows