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

Put the fields to update and their values in values field. To filter the records to be updated, put the conditions in filter property.

For more information, see Filter & Sort section.

ex. ) sample table

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