Base API URL
All API requests follow this format:Authentication
Every request must include the API signature header.API Endpoints
For each table, EazeMyAPI automatically generates REST endpoints. Example table:| Method | Endpoint | Description |
|---|---|---|
| GET | /{project-name}/{table}/{version}/list | Retrieve all records |
| GET | /{project-name}/{table}/{version}/show/:id | Retrieve a single record |
| POST | /{project-name}/{table}/{version}/create | Create a new record |
| POST | /{project-name}/{table}/{version}/update/:id | Update a record |
| DELETE | /{project-name}/{table}/{version}/delete/:id | Delete a record |

