Forum Discussion
bibash
May 15, 2025Copper Contributor
Help with my ASP.NET API Application
I have been developing API for a full stack application with React FrontEnd in ASP.NET for my Internship project which is an Asset Management System. I have successfully implemented API Endpoints for...
arunsurfer7
Jun 27, 2025Copper Contributor
Hi Bibash, that is awesome, you have made good progress with your project. Since you have already implemented CRUD operations wiht JWT authentication here are meaninful next steps you can explore
- Api documentation - either swagger / open api
- Add unit test to your project
- Add validation and error handling
- Always follow th restful naming convention in you api design
- [HttpGet("Delete/{Sn}")] - Use http delete instead of Get, name the method as noun