Add a row

Make POST request with Array of objects to add new rows into table.

To add new rows to the table, make a POST request with an array of objects. Each object in the array represents a new row that you want to add.

curl -X POST "https://v1.appbackend.io/v1/rows/TABLE_ID" \
-H "Content-Type: application/json" \
--data '[
    {
        "name": "Rock",
        "age": 40
    },
    {
        "name": "Will Smith",
        "age": 54
    }
]'

Here is response example.

Add rows res