Update a row

Make PUT request with row object, object should have id key value.

To update a row in the table, make a PUT request with the row object that contains the id key-value pair. This id value identifies the specific row that you want to update.

curl -X PUT "https://v1.appbackend.io/v1/rows/TABLE_ID" \
-H "Content-Type: application/json" \
--data '{
    "id": 2,
    "name": "John",
    "age": 40
}'

Note: id (Row Id) should be in the object.

Update Row