This project utilizes Netlify's serverless functions to handle basic CRUD operations. Below are the available endpoints and their corresponding operations:
- URL: https://serveless-netlify.netlify.app/.netlify/functions/api
- Description: Use this endpoint for logging purposes.
-
Get All Data:
- URL: https://serveless-netlify.netlify.app/.netlify/functions/demo
- Method: GET
- Description: Retrieve a list of all data.
-
Add New Data:
- URL: https://serveless-netlify.netlify.app/.netlify/functions/add
- Method: PUT
- Description: Add new data to the list.
-
Update Data:
- URL: https://serveless-netlify.netlify.app/.netlify/functions/
- Method: PUT
- Description: Update existing data.
-
Delete Data:
- URL: https://serveless-netlify.netlify.app/.netlify/functions/
- Method: DELETE
- Description: Delete data from the list.
Feel free to explore and utilize these endpoints to interact with the serverless functions deployed on Netlify.