Deletes multiple records. Note that you create a database and a table in Widget Dashboard in advance.

To filter the records to be deleted, put the conditions in filter property.

For more information, see Filter & Sort section.

ex. ) sample table

idnameproduct_typeprice
1applefruits100
2grapefruits200
3chocolatesnacks400
// request
{
        "filter": {
          "and": [
            {
              "key": "id",
              "opearator": "equal",
              "value": 1
            }
          ]
        }
}
Language
URL
Click Try It! to start a request and see the response here!