This endpoint allows you to insert data into a specific sheet in your spreadsheet. You need to provide an array of objects where each object represents a row to be added to the sheet.
[ { "name": "John", "age": 21, "dob": "1998/11/04" } ]
curl -X POST https://api.sheet2db.dev/v1/data/aace0271-c068-499f-bb40-83354a35eebc/contacts \ -H "Content-Type: application/json" \ -d '{ "data": [ { "name": "John", "age": 21, "dob": "1998/11/04" } ] }'
{ "inserted": 1 }