REST routes
| DELETE /{url}/{id} | Deletes a row in the table data and returns a JSON object with the ID of that row |
| GET /{url} | Gets rows data for the table and returns a JSON array with data |
| PATCH /{url}/{id} | Updates one field (cell) in a row of the table data |
| POST /{url} | Creates a new row in the table data |
| PUT /{url}/{id} | Updates a row in the table data |