September 15, 2025Avinash Q: How do I retrieve all rows, add a row, update a row, or delete a row? GET: Fetch all rows POST: Send JSON with nested data under the sheet name to insert a record PUT: Target a row by its ID (row number) to update DELETE: Append the row ID to the endpoint to delete it Avinash